.btn-secondary {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #6c757d;
    border: 1px solid #6c757d;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-success {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: #198754;
    border: 1px solid #198754;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}
.btn-secondary,
.btn-success {
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.btn-secondary:hover,
.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,.20);
}

.jqueryslidemenu ul li ul li a {
    width: 200px !important;
    padding: 12px 6px !important;     
}


.dashboard-block {
    margin-top: 25px;
}

.dashboard-block h3 {
    margin: 25px 0 12px 0;
    color: #006b84;
    font-size: 22px;
}

.dashboard-row {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.dashboard-card {
    flex: 1;
    display: block;
    min-height: 95px;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transition: all 0.15s ease-in-out;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #fff;
}

.card-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-text {
    display: block;
    font-size: 13px;
    opacity: 0.95;
}

.card-blue   { background: #007b9e; }
.card-orange { background: #d98200; }
.card-green  { background: #198754; }
.card-teal   { background: #008b8b; }
.card-purple { background: #6f42c1; }
.card-grey   { background: #5c636a; }