/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

:root {
    --ss-primary: #0057ff;
    --ss-primary-dark: #0a1f44;
    --ss-bg: #f4f7fb;
    --ss-border: #dce4f0;
}

body.TMC {
    background: var(--ss-bg);
}

.ss-auth-shell {
    max-width: 980px;
    margin: 40px auto;
    padding: 0 15px;
}

.ss-auth-card {
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(10, 31, 68, 0.08);
    padding: 24px;
}

.ss-auth-card-header {
    margin-bottom: 24px;
    text-align: center;
}

.ss-auth-card-header h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--ss-primary-dark);
}

.ss-auth-card-header p {
    margin: 0;
    color: #4d5e78;
}

.ss-auth-shell .login-form .control-label {
    color: #2a3d5f;
    font-weight: 600;
}

.ss-auth-shell .btn-primary {
    background: linear-gradient(135deg, var(--ss-primary), #00a2ff);
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    padding: 11px 16px;
}

.ss-auth-shell .btn-link {
    color: var(--ss-primary-dark);
}

.ss-social-column {
    border-left: 1px solid var(--ss-border);
    min-height: 100%;
    padding-left: 20px;
}

.ss-auth-register {
    background: #fff;
    border: 1px solid var(--ss-border);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(10, 31, 68, 0.08);
    padding: 25px;
}

.ss-auth-register-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--ss-border);
    padding-bottom: 16px;
}

.ss-auth-register-header h1 {
    margin: 0 0 8px;
    color: var(--ss-primary-dark);
    font-size: 28px;
    font-weight: 700;
}

.ss-auth-register-header p {
    margin: 0;
    color: #4d5e78;
}

.ss-auth-register .sub-heading span {
    font-weight: 700;
    color: var(--ss-primary-dark);
}

.ss-auth-register .form-actions .btn-primary {
    background: linear-gradient(135deg, var(--ss-primary), #00a2ff);
    border: 0;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .ss-auth-card,
    .ss-auth-register {
        padding: 18px;
    }

    .ss-social-column {
        border-left: 0;
        border-top: 1px solid var(--ss-border);
        margin-top: 20px;
        padding-left: 15px;
        padding-top: 20px;
    }
}

body.dashboard-body .ss-home-overview {
    background: linear-gradient(135deg, #1a44b8 0%, #3268ff 45%, #6590ff 100%);
    border-radius: 18px;
    padding: 26px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 16px 30px rgba(31, 70, 176, 0.28);
}

body.dashboard-body .ss-home-intro h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
}

body.dashboard-body .ss-home-intro p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

body.dashboard-body .ss-home-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

body.dashboard-body .ss-shortcut-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 12px;
    transition: all .2s ease;
    font-weight: 600;
    font-size: 13px;
}

body.dashboard-body .ss-shortcut-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
}

body.dashboard-body .ss-shortcut-card i {
    width: 22px;
    text-align: center;
}

body.dashboard-body .ss-home-search {
    background: #fff;
    border: 1px solid #d8e1ee;
}

body.dashboard-body .client-home-panels .panel {
    border: 1px solid #d8e1ee;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

body.dashboard-body .client-home-panels .panel-title {
    font-weight: 700;
}

body.dashboard-body .client-home-panels .list-group-item {
    border-color: #e6ecf5;
    padding-top: 12px;
    padding-bottom: 12px;
}

body.dashboard-body .client-home-panels .list-group-item.active {
    background: #3268ff;
    border-color: #3268ff;
}

@media (max-width: 1199px) {
    body.dashboard-body .ss-home-shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.dashboard-body .ss-home-overview {
        padding: 18px;
    }

    body.dashboard-body .ss-home-intro h1 {
        font-size: 22px;
    }

    body.dashboard-body .ss-home-shortcuts {
        grid-template-columns: 1fr;
    }
}
