
.rkk-staff-wrap {
    --rkk-blue: #003E7D;
    --rkk-yellow: #FFE128;
    --rkk-text: #18212f;
    --rkk-muted: #687386;
    --rkk-border: #e8ecf1;
    --rkk-bg: #f6f8fb;
    max-width: 1180px;
    margin: 32px auto;
    padding: 0 18px 40px;
    color: var(--rkk-text);
    font-family: inherit;
}

.rkk-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, #003E7D 0%, #075aa8 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 62, 125, .15);
}

.rkk-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.rkk-hero h1 {
    color: #fff;
    margin: 0 0 7px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.rkk-hero p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

.rkk-userbox {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.10);
}

.rkk-userbox img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.rkk-userbox strong,
.rkk-userbox span,
.rkk-userbox a {
    display: block;
}

.rkk-userbox span {
    margin-top: 2px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.rkk-userbox a {
    margin-top: 5px;
    color: var(--rkk-yellow);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.rkk-section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 34px 0 16px;
}

.rkk-section-title h2 {
    margin: 0 0 4px;
    font-size: 24px;
}

.rkk-section-title p {
    margin: 0;
    color: var(--rkk-muted);
}

.rkk-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rkk-service-card {
    display: flex;
    gap: 15px;
    min-height: 155px;
    padding: 22px;
    border: 1px solid var(--rkk-border);
    border-radius: 20px;
    background: #fff;
    color: var(--rkk-text);
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(21, 39, 63, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.rkk-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,62,125,.25);
    box-shadow: 0 14px 34px rgba(21, 39, 63, .10);
}

.rkk-service-card.is-disabled {
    cursor: default;
    opacity: .62;
}

.rkk-service-card.is-disabled:hover {
    transform: none;
}

.rkk-icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--rkk-bg);
    font-size: 24px;
}

.rkk-service-card h3 {
    margin: 2px 0 7px;
    font-size: 18px;
}

.rkk-service-card p {
    margin: 0 0 12px;
    color: var(--rkk-muted);
    font-size: 14px;
    line-height: 1.55;
}

.rkk-card-action {
    color: var(--rkk-blue);
    font-weight: 700;
    font-size: 13px;
}

.rkk-admin-note {
    margin-top: 22px;
    padding: 15px 18px;
    border-left: 4px solid var(--rkk-yellow);
    border-radius: 10px;
    background: #fff9d6;
    color: #554b16;
}

.rkk-login-card {
    max-width: 460px;
    margin: 60px auto;
    padding: 34px;
    border: 1px solid var(--rkk-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(21,39,63,.10);
}

.rkk-brand-badge {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--rkk-blue);
    color: var(--rkk-yellow);
    font-weight: 900;
    letter-spacing: .08em;
}

.rkk-login-card h2 {
    margin: 18px 0 5px;
    font-size: 28px;
}

.rkk-login-card > p {
    margin: 0 0 22px;
    color: var(--rkk-muted);
}

.rkk-login-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.rkk-login-card input[type="text"],
.rkk-login-card input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d8dee8;
    border-radius: 11px;
}

.rkk-login-card .login-submit input {
    width: 100%;
    margin-top: 7px;
    padding: 12px 16px;
    border: 0;
    border-radius: 11px;
    background: var(--rkk-blue);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.rkk-login-card .login-remember label {
    display: flex;
    gap: 7px;
    align-items: center;
    font-weight: 400;
}

.rkk-forgot {
    display: inline-block;
    margin-top: 8px;
    color: var(--rkk-blue);
    font-size: 13px;
    text-decoration: none;
}

@media (max-width: 900px) {
    .rkk-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rkk-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .rkk-userbox {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {
    .rkk-card-grid {
        grid-template-columns: 1fr;
    }

    .rkk-hero,
    .rkk-login-card {
        padding: 24px;
        border-radius: 18px;
    }
}


.rkk-form-card {
    max-width: 720px;
    margin: 42px auto;
    padding: 34px;
    border: 1px solid var(--rkk-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(21,39,63,.08);
}

.rkk-form-card h2 {
    margin: 16px 0 6px;
    font-size: 28px;
}

.rkk-form-card > p {
    color: var(--rkk-muted);
}

.rkk-staff-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.rkk-staff-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.rkk-staff-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d8dee8;
    border-radius: 11px;
    background: #fff;
}

.rkk-staff-form input:disabled {
    background: #f3f5f7;
    color: #7a8493;
}

.rkk-form-row.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rkk-primary-button,
.rkk-primary-link {
    display: inline-block;
    padding: 12px 18px;
    border: 0;
    border-radius: 11px;
    background: var(--rkk-blue);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
}

.rkk-message {
    margin: 16px 0;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 14px;
}

.rkk-message.is-success {
    background: #edf9f0;
    color: #176a32;
    border: 1px solid #c9ead2;
}

.rkk-message.is-error {
    background: #fff0f0;
    color: #9b2525;
    border: 1px solid #f0caca;
}

.rkk-small-link {
    margin-top: 18px;
    font-size: 14px;
}

.rkk-login-links,
.rkk-user-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rkk-user-actions {
    margin-top: 5px;
}

.rkk-user-actions a {
    margin-top: 0;
}

@media (max-width: 600px) {
    .rkk-form-row.two {
        grid-template-columns: 1fr;
    }

    .rkk-form-card {
        padding: 24px;
        border-radius: 18px;
    }
}
