:root {
    --primary-red: #e11d2e;
    --primary-red-dark: #b31321;
    --black-main: #0b0b0f;
    --black-soft: #111827;
    --black-card: linear-gradient(145deg, #0b0f19, #121826);
    --white-main: #ffffff;
    --white-soft: #f3f4f6;
    --gray-text: #9ca3af;
    --border-soft: rgba(255,255,255,0.08);
    --shadow-main: 0 16px 35px rgba(0, 0, 0, 0.18);
    --shadow-3d: 0 12px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--white-soft);
    color: #111111;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
}

/* LINKS */
a, .btn-link {
    color: var(--primary-red);
    text-decoration: none;
}

a:hover {
    color: var(--primary-red-dark);
}

/* LAYOUT */
.page {
    position: relative;
    display: flex;
    flex-direction: row;
}

main {
    flex: 1;
}

.content {
    padding: 1.5rem 2rem;
}

.top-row {
    background: rgba(255,255,255,0.85);
    border-bottom: 1px solid #e5e7eb;
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
}

.top-row a, .top-row .btn-link {
    margin-right: 1.5rem;
    white-space: nowrap;
    font-weight: 600;
}

/* SIDEBAR */
.sidebar {
    background: linear-gradient(180deg, #090909 0%, #140b0d 55%, #220b10 100%);
    min-width: 310px;
    min-height: 100vh;
    box-shadow: 8px 0 30px rgba(0,0,0,0.15);
}

.sidebar .top-row {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    justify-content: flex-start;
    backdrop-filter: none;
    box-shadow: none;
}

.sidebar .navbar-brand {
    font-size: 2rem;
    font-weight: 900;
    color: white !important;
    letter-spacing: 0.5px;
}

.nav-scrollable {
    padding: 1rem 0.75rem 2rem 0.75rem;
}

.nav-item {
    margin-bottom: 0.9rem;
}

.nav-item a,
.nav-item .nav-link {
    color: white !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    display: block;
    transition: all 0.22s ease;
    border: 1px solid transparent;
}

.nav-item a:hover,
.nav-item .nav-link:hover {
    background: rgba(225, 29, 46, 0.18);
    border: 1px solid rgba(225, 29, 46, 0.25);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.nav-item a.active,
.nav-item .nav-link.active {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white !important;
    box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}

/* HEADINGS */
h1, h2, h3 {
    color: #111111;
    font-weight: 900;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

/* GENERIC CARD STYLE */
.fitness-card,
.dashboard-card,
.form-card,
.metric-card,
.report-card {
    background: var(--black-card);
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.7rem;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.fitness-card::before,
.dashboard-card::before,
.form-card::before,
.metric-card::before,
.report-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
    pointer-events: none;
}

.fitness-card:hover,
.dashboard-card:hover,
.form-card:hover,
.metric-card:hover,
.report-card:hover {
    transform: translateY(-3px);
    transition: all 0.22s ease;
    box-shadow: 0 18px 35px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* CARD TITLES */
.fitness-card h3,
.fitness-card h4,
.dashboard-card h3,
.form-card h3,
.metric-card h3,
.report-card h3 {
    color: var(--primary-red);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 900;
}

.fitness-card p,
.dashboard-card p,
.form-card p,
.metric-card p,
.report-card p {
    color: white;
    line-height: 1.6;
}

/* CONTAINERS */
.cards-container,
.metrics-grid,
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* SECTION TITLE */
.section-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    color: #111111;
}

/* BUTTONS */
button,
.btn,
.fitness-link-button {
    border: none;
    border-radius: 16px;
    padding: 0.9rem 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary,
.fitness-link-button,
button[type="submit"] {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
    box-shadow: 0 10px 22px rgba(225,29,46,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-primary:hover,
.fitness-link-button:hover,
button[type="submit"]:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-1px);
    color: white;
}

.btn-secondary {
    background: #1f2937;
    color: white;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    background: #111827;
    color: white;
}

.btn-danger {
    background: linear-gradient(145deg, #ef4444, #dc2626);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(145deg, #f25b5b, #c81e1e);
}

/* FORMS */
input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #111111;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(225,29,46,0.15);
}

label {
    display: block;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group {
    margin-bottom: 1.3rem;
}

/* BIG FORM BOX */
.form-wrapper {
    max-width: 900px;
}

.form-card .actions,
.home-actions-simple {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* STATUS BADGES */
.status-badge,
.badge-success,
.badge-danger,
.badge-warning {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.16);
}

.status-badge.active,
.badge-success {
    background: linear-gradient(145deg, #e11d2e, #b31321);
}

.status-badge.expired,
.badge-danger {
    background: linear-gradient(145deg, #1f2937, #111827);
}

.badge-warning {
    background: linear-gradient(145deg, #ef4444, #b91c1c);
}

/* DASHBOARD METRICS */
.metric-value {
    font-size: 2.7rem;
    font-weight: 900;
    margin-top: 1rem;
    color: white;
}

.metric-value.red {
    color: var(--primary-red);
}

.metric-value.black {
    color: #111111;
}

.metric-value.light {
    color: #f9fafb;
}

/* TABLE-LIKE ROWS INSIDE REPORT CARDS */
.report-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.report-row:last-child {
    border-bottom: none;
}

/* LOGIN / REGISTER CENTER CARD */
.auth-page-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 620px;
    background: var(--black-card);
    border-radius: 30px;
    padding: 2.4rem;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.auth-card h1,
.auth-card h2,
.auth-card h3 {
    text-align: center;
    color: var(--primary-red);
}

.auth-card p {
    color: white;
    text-align: center;
}

/* SMALL HELPER */
.text-muted-light {
    color: #d1d5db;
}

.text-red {
    color: var(--primary-red);
}

.text-white {
    color: white;
}

.text-black {
    color: #111111;
}

/* MOBILE */
@media (max-width: 900px) {
    .page {
        flex-direction: column;
    }

    .sidebar {
        min-width: 100%;
        min-height: auto;
    }

    .content {
        padding: 1rem;
    }

    h1 {
        font-size: 2.1rem;
    }
}

/* COMPATIBILITATE CU CLASELE EXISTENTE */

.fitness-input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #111111;
    font-size: 1rem;
    box-sizing: border-box;
}

.fitness-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(225,29,46,0.15);
}

.fitness-textarea {
    min-height: 110px;
    resize: vertical;
}

.fitness-form-group {
    margin-bottom: 1.3rem;
}

.fitness-form-group label {
    color: white;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.fitness-submit-button {
    width: 100%;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
    border: none;
    padding: 0.95rem 1.3rem;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(225,29,46,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}

.fitness-submit-button:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-1px);
}

.fitness-danger-button {
    background: linear-gradient(145deg, #ef4444, #b91c1c);
    color: white;
    border: none;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.fitness-danger-button:hover {
    background: linear-gradient(145deg, #f87171, #991b1b);
}

.fitness-secondary-button {
    background: linear-gradient(145deg, #1f2937, #0b0b0f);
    color: white;
    border: none;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
}

.fitness-secondary-button:hover {
    background: linear-gradient(145deg, #374151, #111827);
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dashboard-stat-card {
    background: var(--black-card);
    color: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-soft);
}

.dashboard-stat-card h3 {
    color: #d1d5db;
    font-size: 17px;
    margin-bottom: 18px;
}

.dashboard-stat-card p {
    color: var(--primary-red);
    font-size: 34px;
    font-weight: 900;
    margin: 0;
}

.danger-stat p {
    color: #ef4444;
}

.money-stat p {
    color: var(--primary-red);
}

.filter-card {
    background: var(--black-card);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    max-width: 520px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-soft);
}

.filter-card label {
    color: white;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.abonament-meu-card {
    background: var(--black-card);
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    border: 1px solid var(--border-soft);
    max-width: 900px;
}

.abonament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.abonament-header h2 {
    color: var(--primary-red);
    margin: 0;
}

.status-activ {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
}

.status-expirat {
    background: linear-gradient(145deg, #1f2937, #0b0b0f);
    color: white;
}

.abonament-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.info-label {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 4px;
}

.info-value {
    color: white;
    font-size: 20px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .dashboard-grid,
    .abonament-info-grid {
        grid-template-columns: 1fr;
    }
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.25rem 0.75rem 0.55rem 0.75rem;
}

.logout-link {
    background: rgba(225, 29, 46, 0.12) !important;
    border: 1px solid rgba(225, 29, 46, 0.22) !important;
}

.main-top-row {
    background: rgba(255, 255, 255, 0.92);
}

.main-top-row a {
    color: #111111;
    font-weight: 800;
}

.main-top-row a:hover {
    color: var(--primary-red);
}

.logo-area {
    height: auto !important;
    padding: 18px 16px;
    justify-content: center !important;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.sidebar-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(225, 29, 46, 0.35);
    border: 2px solid rgba(225, 29, 46, 0.5);
}

.logo-link span {
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.login-logo {
    display: block;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 28px;
    margin: 0 auto 18px auto;
    box-shadow: 0 16px 34px rgba(225, 29, 46, 0.38);
    border: 2px solid rgba(225, 29, 46, 0.5);
}

.login-page {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.login-card-3d {
    width: 100%;
    max-width: 560px;
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 32px;
    padding: 38px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.login-logo-big {
    display: block;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 30px;
    margin: 0 auto 22px auto;
    box-shadow: 0 18px 40px rgba(225, 29, 46, 0.38);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.login-card-3d h1 {
    color: #ffffff;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 6px;
}

.login-subtitle {
    color: #d1d5db;
    text-align: center;
    font-size: 18px;
    margin-bottom: 28px;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.login-input {
    width: 100%;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #111111;
    font-size: 16px;
}

.login-input:focus {
    outline: none;
    border-color: #e11d2e;
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
}

.login-button {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.login-button:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-1px);
}

.login-register-link {
    text-align: center;
    color: #ffffff;
    margin-top: 22px;
    font-weight: 700;
}

.login-register-link a {
    color: #e11d2e;
    font-weight: 900;
    text-decoration: none;
}

.login-register-link a:hover {
    color: #ff4050;
}

.login-error {
    background-color: rgba(225, 29, 46, 0.14);
    color: #fecaca;
    border: 1px solid rgba(225, 29, 46, 0.35);
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.register-page {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.register-card-3d {
    width: 100%;
    max-width: 780px;
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 32px;
    padding: 38px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.register-logo-big {
    display: block;
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 30px;
    margin: 0 auto 22px auto;
    box-shadow: 0 18px 40px rgba(225, 29, 46, 0.38);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.register-card-3d h1 {
    color: #ffffff;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 6px;
}

.register-subtitle {
    color: #d1d5db;
    text-align: center;
    font-size: 18px;
    margin-bottom: 28px;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.register-form-group {
    margin-bottom: 4px;
}

.register-form-group label {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.register-full {
    grid-column: 1 / -1;
}

.register-input {
    width: 100%;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #111111;
    font-size: 16px;
}

.register-input:focus {
    outline: none;
    border-color: #e11d2e;
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
}

.register-button {
    width: 100%;
    margin-top: 26px;
    padding: 16px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.register-button:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-1px);
}

.register-login-link {
    text-align: center;
    color: #ffffff;
    margin-top: 22px;
    font-weight: 700;
}

.register-login-link a {
    color: #e11d2e;
    font-weight: 900;
    text-decoration: none;
}

.register-login-link a:hover {
    color: #ff4050;
}

.register-error {
    background-color: rgba(225, 29, 46, 0.14);
    color: #fecaca;
    border: 1px solid rgba(225, 29, 46, 0.35);
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.register-success {
    background-color: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.35);
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 800px) {
    .register-grid {
        grid-template-columns: 1fr;
    }

    .register-card-3d {
        padding: 28px;
    }

    .register-card-3d h1 {
        font-size: 34px;
    }
}

.home-modern-page {
    padding: 24px;
}

.home-modern-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 46px;
}

.home-modern-card {
    width: 100%;
    max-width: 980px;
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 36px;
    padding: 48px;
    text-align: center;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.home-modern-logo {
    width: 145px;
    height: 145px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 24px;
    box-shadow: 0 18px 42px rgba(225, 29, 46, 0.40);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.home-modern-card h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.home-modern-subtitle {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-modern-description {
    color: #d1d5db;
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.home-modern-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.home-modern-primary-btn,
.home-modern-secondary-btn {
    min-width: 210px;
    padding: 16px 24px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.22s ease;
}

.home-modern-primary-btn {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white !important;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-modern-primary-btn:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    color: white !important;
    transform: translateY(-2px);
}

.home-modern-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-modern-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: white !important;
    transform: translateY(-2px);
}

.home-modern-user-box {
    max-width: 460px;
    margin: 24px auto 0 auto;
    padding: 18px 22px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.home-modern-user-box p {
    color: #ffffff;
    margin: 6px 0;
    font-size: 16px;
}

.home-modern-section {
    margin-bottom: 44px;
}

.home-modern-section-title {
    margin-bottom: 22px;
}

.home-modern-section-title h2 {
    color: #111111;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 6px;
}

.home-modern-section-title p {
    color: #6b7280;
    font-size: 17px;
    margin: 0;
}

.home-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-modern-feature-card {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    padding: 30px;
    border-radius: 28px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
    transition: all 0.22s ease;
}

.home-modern-feature-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(225, 29, 46, 0.12);
}

.home-modern-feature-card h3 {
    color: #e11d2e;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.home-modern-feature-card p {
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

.home-modern-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-modern-plan-card {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    padding: 28px;
    border-radius: 28px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
    transition: all 0.22s ease;
}

.home-modern-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(225, 29, 46, 0.14);
}

.home-modern-plan-card h3 {
    color: #e11d2e;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.home-modern-plan-description {
    color: #e5e7eb;
    min-height: 52px;
    line-height: 1.5;
}

.home-modern-plan-price {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    margin-top: 20px;
}

.home-modern-plan-duration {
    color: #9ca3af;
    font-weight: 700;
    margin-top: 6px;
}

.home-modern-loading {
    color: #6b7280;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .home-modern-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-modern-grid,
    .home-modern-plans-grid {
        grid-template-columns: 1fr;
    }

    .home-modern-card {
        padding: 34px 24px;
    }

    .home-modern-card h1 {
        font-size: 40px;
    }

    .home-modern-logo {
        width: 120px;
        height: 120px;
    }
}

.admin-dashboard-page {
    padding: 24px;
}

.admin-dashboard-hero {
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 34px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.admin-dashboard-badge {
    display: inline-block;
    background-color: rgba(225, 29, 46, 0.16);
    color: #ff4050;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.admin-dashboard-hero h1 {
    color: white;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.admin-dashboard-hero p {
    color: #d1d5db;
    font-size: 18px;
    max-width: 720px;
    line-height: 1.6;
    margin: 0;
}

.admin-dashboard-logo {
    width: 135px;
    height: 135px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 18px 42px rgba(225, 29, 46, 0.40);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.admin-stat-card {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
    transition: all 0.22s ease;
}

.admin-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(225, 29, 46, 0.14);
}

.admin-stat-top span {
    color: #d1d5db;
    font-weight: 800;
    font-size: 17px;
}

.admin-stat-value {
    color: #e11d2e;
    font-size: 44px;
    font-weight: 900;
    margin: 18px 0 10px 0;
    line-height: 1.1;
}

.admin-stat-card p {
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

.admin-stat-card.danger .admin-stat-value {
    color: #ff4050;
}

.admin-stat-card.money .admin-stat-value {
    color: #ffffff;
}

.admin-dashboard-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.admin-dashboard-btn {
    min-width: 190px;
    padding: 15px 24px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.22s ease;
}

.admin-dashboard-btn.primary {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white !important;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.admin-dashboard-btn.primary:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-2px);
}

.admin-dashboard-btn.secondary {
    background: linear-gradient(145deg, #080808, #151515);
    color: white !important;
    border: 1px solid rgba(225, 29, 46, 0.25);
}

.admin-dashboard-btn.secondary:hover {
    border-color: rgba(225, 29, 46, 0.6);
    transform: translateY(-2px);
}

.admin-dashboard-error,
.admin-dashboard-loading {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(225, 29, 46, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}

.admin-dashboard-error h3 {
    color: #e11d2e;
    margin-bottom: 10px;
}

.admin-dashboard-error p,
.admin-dashboard-loading {
    color: #d1d5db;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .admin-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .admin-dashboard-hero {
        flex-direction: column;
        text-align: center;
    }

    .admin-dashboard-hero h1 {
        font-size: 36px;
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-logo {
        width: 115px;
        height: 115px;
    }
}

.programari-page {
    padding: 24px;
}

.programari-hero {
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 32px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.programari-badge {
    display: inline-block;
    background-color: rgba(225, 29, 46, 0.16);
    color: #ff4050;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.programari-hero h1 {
    color: white;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.programari-hero p {
    color: #d1d5db;
    font-size: 18px;
    max-width: 720px;
    line-height: 1.6;
    margin: 0;
}

.programari-logo {
    width: 135px;
    height: 135px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 18px 42px rgba(225, 29, 46, 0.40);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.programari-filter-card {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    border-radius: 30px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.25);
}

.programari-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.programari-filter-group label {
    color: white;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
}

.programari-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #111111;
    font-size: 16px;
}

.programari-input:focus {
    outline: none;
    border-color: #e11d2e;
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
}

.programari-quick-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.programari-small-btn {
    padding: 12px 18px;
    border-radius: 16px;
    border: none;
    color: white;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.22s ease;
}

.programari-small-btn:hover {
    transform: translateY(-2px);
}

.programari-small-btn.primary {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
}

.programari-small-btn.secondary {
    background: linear-gradient(145deg, #1f1f1f, #111111);
    border: 1px solid rgba(225, 29, 46, 0.28);
}

.programari-small-btn.danger {
    background: linear-gradient(145deg, #ef4444, #991b1b);
}

.programari-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 32px;
}

.programari-summary-card {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    padding: 24px;
    border-radius: 26px;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
}

.programari-summary-card span {
    color: #d1d5db;
    font-weight: 800;
}

.programari-summary-card strong {
    display: block;
    color: #e11d2e;
    font-size: 34px;
    font-weight: 900;
    margin-top: 10px;
}

.programari-day-section {
    margin-bottom: 36px;
}

.programari-day-section h2 {
    color: #111111;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.programari-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.programare-card-3d {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    border-radius: 30px;
    padding: 28px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
    transition: all 0.22s ease;
}

.programare-card-3d:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(225, 29, 46, 0.14);
}

.programare-card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.programare-card-header h3 {
    color: #e11d2e;
    font-weight: 900;
    margin: 0;
}

.programare-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    color: white;
    font-size: 14px;
}

.programare-status.programata {
    background: linear-gradient(145deg, #e11d2e, #b31321);
}

.programare-status.anulata {
    background: linear-gradient(145deg, #374151, #111827);
}

.programare-info p {
    color: white;
    margin-bottom: 10px;
    line-height: 1.5;
}

.programare-info strong {
    color: #ffffff;
}

.programare-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.programare-action-btn {
    padding: 12px 18px;
    border-radius: 16px;
    border: none;
    color: white;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.22s ease;
}

.programare-action-btn:hover {
    transform: translateY(-2px);
}

.programare-action-btn.edit {
    background: linear-gradient(145deg, #1f1f1f, #111111);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.programare-action-btn.cancel {
    background: linear-gradient(145deg, #e11d2e, #b31321);
}

.programari-empty-card,
.programari-error-card,
.programari-loading {
    background: linear-gradient(145deg, #080808, #151515);
    color: #d1d5db;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(225, 29, 46, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
    font-weight: 800;
}

.programari-error-card h3 {
    color: #dc2626;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .programari-filter-grid,
    .programari-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .programari-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .programari-hero {
        flex-direction: column;
        text-align: center;
    }

    .programari-hero h1 {
        font-size: 36px;
    }

    .programari-filter-grid,
    .programari-cards-grid,
    .programari-summary {
        grid-template-columns: 1fr;
    }

    .programari-logo {
        width: 115px;
        height: 115px;
    }
}

.rapoarte-page {
    padding: 24px;
}

.rapoarte-hero {
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 32px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.35);
}

.rapoarte-badge {
    display: inline-block;
    background-color: rgba(225, 29, 46, 0.16);
    color: #ff4050;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.rapoarte-hero h1 {
    color: white;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rapoarte-hero p {
    color: #d1d5db;
    font-size: 18px;
    max-width: 720px;
    line-height: 1.6;
    margin: 0;
}

.rapoarte-logo {
    width: 135px;
    height: 135px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 18px 42px rgba(225, 29, 46, 0.40);
    border: 2px solid rgba(225, 29, 46, 0.55);
}

.rapoarte-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.raport-card-3d {
    background: linear-gradient(145deg, #080808, #151515);
    color: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(225, 29, 46, 0.22);
    transition: all 0.22s ease;
}

.raport-card-3d:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.55);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(225, 29, 46, 0.14);
}

.raport-card-header h3 {
    color: #e11d2e;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 22px;
}

.raport-row-modern {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.raport-row-modern:last-child {
    border-bottom: none;
}

.raport-row-modern span {
    color: #ffffff;
    font-weight: 700;
}

.raport-row-modern strong {
    color: #e11d2e;
    text-align: right;
    font-weight: 900;
}

.raport-row-large {
    align-items: flex-start;
}

.raport-filter-box {
    margin-bottom: 20px;
}

.raport-filter-box label,
.raport-filter-grid label {
    color: white;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
}

.raport-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.raport-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #111111;
    font-size: 16px;
}

.raport-input:focus {
    outline: none;
    border-color: #e11d2e;
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
}

.raport-red-button {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.raport-red-button:hover {
    background: linear-gradient(145deg, #f12437, #c51524);
    transform: translateY(-2px);
}

.raport-empty,
.rapoarte-loading,
.rapoarte-error-card {
    color: #d1d5db;
    font-weight: 700;
}

.rapoarte-error-card {
    background: linear-gradient(145deg, #080808, #151515);
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(225, 29, 46, 0.35);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}

.rapoarte-error-card h3 {
    color: #e11d2e;
    margin-bottom: 10px;
}

@media (max-width: 1000px) {
    .rapoarte-grid {
        grid-template-columns: 1fr;
    }

    .rapoarte-hero {
        flex-direction: column;
        text-align: center;
    }

    .rapoarte-hero h1 {
        font-size: 36px;
    }

    .rapoarte-logo {
        width: 115px;
        height: 115px;
    }
}

@media (max-width: 700px) {
    .raport-filter-grid {
        grid-template-columns: 1fr;
    }
}

.programare-day-preview {
    color: #e11d2e;
    font-weight: 900;
    margin-top: 8px;
}

/* CONFIRMĂ PREZENȚA - VERDE MAT */
.programare-card-3d .programare-actions .programare-action-btn.confirm-presence {
    all: unset !important;
    box-sizing: border-box !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 190px !important;
    padding: 12px 20px !important;
    border-radius: 18px !important;

    background-color: #74d900 !important;
    background-image: none !important;

    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-align: center !important;

    border: none !important;
    cursor: pointer !important;
    opacity: 1 !important;

    box-shadow:
        0 8px 18px rgba(116, 217, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;

    transition: all 0.2s ease-in-out !important;
}

.programare-card-3d .programare-actions .programare-action-btn.confirm-presence:hover {
    background-color: #7ee600 !important;
    background-image: none !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;

    box-shadow:
        0 10px 22px rgba(116, 217, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.programare-card-3d .programare-actions .programare-action-btn.confirm-presence:active {
    transform: scale(0.98) !important;
}

/* STATUS CONFIRMATĂ - VERDE MAT */
.programare-status.confirmata {
    background-color: #74d900 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 14px rgba(116, 217, 0, 0.20) !important;
}

.admin-home-page {
    padding: 18px 24px 34px 24px;
    color: white;
}

.admin-home-topbar {
    background: linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-home-page-title {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.admin-home-menu-icon {
    font-size: 24px;
    color: white;
}

.admin-home-user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #101010, #181818);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 10px 16px;
    color: white;
    font-weight: 800;
}

.admin-home-user-pill small {
    color: #e11d2e;
    font-weight: 900;
}

.admin-home-user-icon {
    color: #e11d2e;
    font-size: 14px;
}

.admin-home-hero {
    background:
        radial-gradient(circle at 78% 45%, rgba(225, 29, 46, 0.34), transparent 28%),
        linear-gradient(145deg, #080808, #151515);
    border-radius: 30px;
    padding: 42px;
    margin-bottom: 18px;
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(225, 29, 46, 0.30);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.admin-home-hero-content h1 {
    color: white;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 14px;
}

.admin-home-hero-content h1 span {
    color: #e11d2e;
}

.admin-home-hero-content p {
    color: #d1d5db;
    font-size: 19px;
    margin-bottom: 24px;
}

.admin-home-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: white;
    border-radius: 16px;
    padding: 13px 18px;
    font-weight: 800;
}

.admin-home-hero-pill span {
    background: #e11d2e;
    border-radius: 10px;
    padding: 5px 9px;
}

.admin-home-hero-visual {
    position: relative;
    width: 285px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-home-hero-visual img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 32px;
    border: 2px solid rgba(225, 29, 46, 0.55);
    box-shadow: 0 18px 42px rgba(225, 29, 46, 0.35);
}

.admin-home-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20);
}

.admin-home-mini-card small {
    display: block;
    color: #555;
    font-weight: 800;
}

.admin-home-mini-card strong {
    color: #e11d2e;
    font-size: 22px;
    font-weight: 900;
}

.admin-home-mini-card.left {
    left: -15px;
    top: 6px;
}

.admin-home-mini-card.right {
    right: -10px;
    bottom: 8px;
}

.admin-home-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.admin-home-kpi-card {
    background: linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-home-kpi-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.32);
    font-size: 25px;
}

.admin-home-kpi-card span {
    color: #d1d5db;
    display: block;
    font-weight: 800;
    margin-bottom: 5px;
}

.admin-home-kpi-card strong {
    color: white;
    display: block;
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 4px;
}

.admin-home-kpi-card small {
    color: #22c55e;
    font-weight: 800;
}

.admin-home-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.25fr;
    gap: 16px;
    margin-bottom: 16px;
}

.admin-home-bottom-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.admin-home-panel {
    background: linear-gradient(145deg, #080808, #151515);
    border-radius: 26px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-home-panel h3 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 900;
}

.admin-home-panel p {
    color: #9ca3af;
    margin: 0;
    font-weight: 700;
}

.admin-home-red-icon {
    color: #e11d2e;
    font-size: 22px;
    margin-right: 8px;
}

.admin-home-panel-title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.admin-home-panel-title-row a {
    color: white;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 9px 13px;
    font-size: 14px;
}

.admin-home-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}

.admin-home-action {
    min-height: 86px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 900;
    text-decoration: none !important;
}

.admin-home-action.red {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: white !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.30);
}

.admin-home-action.light {
    background: white;
    color: #111111 !important;
}

.admin-home-action span {
    font-size: 24px;
}

.admin-home-wide-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #111111, #1d1d1d);
    color: white !important;
    border-radius: 18px;
    padding: 15px;
    font-weight: 900;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-home-appointments {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-home-appointment-row {
    background: white;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    align-items: center;
}

.admin-home-appointment-time {
    color: #e11d2e;
    font-weight: 900;
}

.admin-home-appointment-info strong {
    color: #111111;
    display: block;
    font-weight: 900;
}

.admin-home-appointment-info span {
    color: #6b7280;
    font-weight: 700;
}

.admin-home-status {
    padding: 7px 12px;
    border-radius: 999px;
    color: white;
    font-size: 13px;
    font-weight: 900;
}

.admin-home-status.programata {
    background: #e11d2e;
}

.admin-home-status.confirmata {
    background: #74d900;
}

.admin-home-status.anulata {
    background: #374151;
}

.admin-home-activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-home-activity-row {
    display: flex;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.admin-home-activity-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admin-home-activity-row strong {
    display: block;
    color: white;
    font-weight: 900;
}

.admin-home-activity-row span {
    color: #9ca3af;
    font-weight: 700;
}

.admin-home-activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-home-activity-icon.green {
    background: #22c55e;
}

.admin-home-activity-icon.red {
    background: #e11d2e;
}

.admin-home-activity-icon.blue {
    background: #3b82f6;
}

.admin-home-activity-icon.purple {
    background: #a855f7;
}

.admin-home-subscription-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-home-subscription-row:last-child {
    border-bottom: none;
}

.admin-home-subscription-row strong {
    color: white;
    display: block;
    font-weight: 900;
}

.admin-home-subscription-row span {
    color: #9ca3af;
    font-weight: 700;
}

.admin-home-subscription-row b {
    color: white;
    font-weight: 900;
}

.admin-home-summary-panel {
    display: grid;
    gap: 14px;
}

.admin-home-summary-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
}

.admin-home-summary-box span {
    color: #9ca3af;
    font-weight: 800;
}

.admin-home-summary-box strong {
    display: block;
    color: white;
    font-size: 26px;
    font-weight: 900;
    margin: 8px 0;
}

.admin-home-summary-box small {
    color: #22c55e;
    font-weight: 900;
}

.admin-home-empty,
.admin-home-loading,
.admin-home-error {
    color: #d1d5db;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 18px;
}

@media (max-width: 1300px) {
    .admin-home-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-home-content-grid,
    .admin-home-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .admin-home-topbar,
    .admin-home-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-home-kpi-grid {
        grid-template-columns: 1fr;
    }

    .admin-home-actions-grid {
        grid-template-columns: 1fr;
    }

    .admin-home-appointment-row {
        grid-template-columns: 1fr;
    }

    .admin-home-hero-content h1 {
        font-size: 34px;
    }
}

/* ================================
   SIDEBAR DARK PREMIUM - PERSONAL GYM
   ================================ */

.sidebar {
    background:
        radial-gradient(circle at top, rgba(225, 29, 46, 0.18), transparent 28%),
        linear-gradient(180deg, #050505 0%, #090909 45%, #0f0f12 100%) !important;
    min-width: 300px !important;
    width: 300px !important;
    min-height: 100vh !important;
    box-shadow:
        10px 0 35px rgba(0, 0, 0, 0.28),
        inset -1px 0 0 rgba(255, 255, 255, 0.05) !important;
    border-right: 1px solid rgba(225, 29, 46, 0.18);
}

.sidebar .top-row,
.logo-area {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 28px 18px 20px 18px !important;
    height: auto !important;
    justify-content: center !important;
}

.logo-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    gap: 12px !important;
}

.sidebar-logo {
    width: 135px !important;
    height: 135px !important;
    border-radius: 26px !important;
    object-fit: cover !important;
    border: 2px solid rgba(225, 29, 46, 0.65) !important;
    box-shadow:
        0 0 24px rgba(225, 29, 46, 0.42),
        0 18px 38px rgba(0, 0, 0, 0.34) !important;
}

.logo-link span {
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.4px !important;
    text-align: center !important;
}

html body .sidebar-panel-text {
    color: #e11d2e !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    letter-spacing: 0.6px !important;
    margin-top: -6px !important;
    text-align: center !important;
}

.nav-scrollable {
    padding: 18px 16px 28px 16px !important;
}

.nav-menu {
    gap: 0.35rem !important;
}

.nav-section-title {
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 1.4px !important;
    margin: 24px 14px 12px 14px !important;
}

.nav-item {
    margin-bottom: 8px !important;
}

.nav-item a,
.nav-item .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 17px !important;
    font-weight: 850 !important;
    padding: 15px 18px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    transition: all 0.2s ease-in-out !important;
}

.nav-item a:hover,
.nav-item .nav-link:hover {
    background: rgba(225, 29, 46, 0.14) !important;
    border-color: rgba(225, 29, 46, 0.25) !important;
    color: #ffffff !important;
    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20);
}

.nav-item a.active,
.nav-item .nav-link.active {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.10) !important;
    box-shadow:
        0 12px 28px rgba(225, 29, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    transform: none !important;
}

.logout-link {
    margin-top: 28px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.logout-link:hover {
    background: rgba(225, 29, 46, 0.16) !important;
}

/* ================================
   MAIN LAYOUT ADJUSTMENT
   ================================ */

.page {
    background: #f3f4f6 !important;
}

main {
    background: #f3f4f6 !important;
    min-height: 100vh;
}

.content {
    padding: 28px 34px !important;
}

.top-row.main-top-row {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    height: 64px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
}

.top-row.main-top-row a {
    color: #111111 !important;
    font-weight: 900 !important;
    font-size: 16px;
}

@media (max-width: 900px) {
    .sidebar {
        min-width: 100% !important;
        width: 100% !important;
        min-height: auto !important;
    }

    .sidebar-logo {
        width: 105px !important;
        height: 105px !important;
    }

    .logo-link span {
        font-size: 22px !important;
    }

    .content {
        padding: 18px !important;
    }
}

/* =========================================================
   PERSONAL GYM - ADMIN HOME PREMIUM DASHBOARD
   ========================================================= */

.pg-admin-home {
    padding: 0;
    color: #ffffff;
}

.pg-admin-topbar {
    height: 58px;
    background: linear-gradient(145deg, #070707, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0 18px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pg-admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
}

.pg-menu-icon {
    font-size: 24px;
    line-height: 1;
}

.pg-admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pg-auth-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pg-auth-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e11d2e;
    box-shadow: 0 0 10px rgba(225, 29, 46, 0.55);
}

.pg-auth-pill strong {
    color: #e11d2e;
    font-weight: 900;
}

.pg-admin-hero {
    min-height: 220px;
    background:
        radial-gradient(circle at 75% 45%, rgba(225, 29, 46, 0.35), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(225, 29, 46, 0.32);
    border-radius: 28px;
    padding: 34px 42px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pg-admin-hero::before {
    content: "";
    position: absolute;
    right: 60px;
    top: 34px;
    width: 180px;
    height: 180px;
    border-radius: 46px;
    background: rgba(225, 29, 46, 0.18);
    transform: rotate(8deg);
}

.pg-admin-hero::after {
    content: "";
    position: absolute;
    right: 185px;
    top: 55px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.5;
}

.pg-admin-hero-text {
    position: relative;
    z-index: 2;
}

.pg-admin-hero-text h1 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 950;
    margin: 0 0 14px 0;
    letter-spacing: 0.4px;
}

.pg-admin-hero-text h1 span {
    color: #e11d2e;
}

.pg-admin-hero-text p {
    color: #d1d5db;
    font-size: 18px;
    margin: 0 0 22px 0;
    font-weight: 600;
}

.pg-hero-mini-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 850;
}

.pg-hero-mini-info span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e11d2e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(225, 29, 46, 0.30);
}

.pg-admin-hero-visual {
    width: 430px;
    height: 180px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-admin-hero-visual img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid rgba(225, 29, 46, 0.6);
    box-shadow:
        0 18px 42px rgba(225, 29, 46, 0.33),
        0 0 0 12px rgba(225, 29, 46, 0.05);
}

.pg-performance-card,
.pg-objective-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    border-radius: 16px;
    padding: 13px 16px;
    min-width: 128px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.pg-performance-card {
    left: 0;
    top: 10px;
    background: rgba(10, 10, 10, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.pg-objective-card {
    right: 8px;
    bottom: 16px;
}

.pg-performance-card span,
.pg-objective-card span {
    display: block;
    font-size: 13px;
    color: #cfd2d6;
    font-weight: 800;
    margin-bottom: 4px;
}

.pg-objective-card span {
    color: #555;
}

.pg-performance-card strong,
.pg-objective-card strong {
    display: block;
    color: #e11d2e;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.1;
}

.pg-performance-card small,
.pg-objective-card small {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
}

.pg-admin-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.pg-kpi-card {
    background: linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    min-height: 94px;
}

.pg-kpi-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.32);
}

.pg-kpi-icon span {
    font-size: 23px;
    line-height: 1;
}

.pg-kpi-card p {
    margin: 0 0 4px 0;
    color: #cfd2d6;
    font-weight: 800;
    font-size: 14px;
}

.pg-kpi-card h2 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
}

.pg-kpi-card small {
    color: #22c55e;
    font-weight: 850;
    font-size: 12px;
}

.pg-admin-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr 1.25fr;
    gap: 12px;
    margin-bottom: 12px;
}

.pg-admin-bottom-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.55fr;
    gap: 12px;
}

.pg-admin-panel {
    background: linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 20px;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pg-panel-header,
.pg-panel-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.pg-panel-header h3,
.pg-panel-title-row h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    margin: 0 0 5px 0;
}

.pg-panel-header p,
.pg-panel-title-row p {
    color: #9ca3af;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.pg-panel-title-row a,
.pg-small-filter {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none !important;
    white-space: nowrap;
}

.pg-red-symbol {
    color: #e11d2e;
    font-size: 20px;
    margin-right: 8px;
}

.pg-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.pg-action-btn {
    min-height: 80px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    text-align: center;
    font-weight: 950;
    text-decoration: none !important;
    transition: 0.2s ease;
}

.pg-action-btn:hover {
    transform: translateY(-2px);
}

.pg-action-btn span {
    font-size: 22px;
    line-height: 1;
}

.pg-action-btn.red {
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.30);
}

.pg-action-btn.white {
    background: #ffffff;
    color: #111111 !important;
}

.pg-wide-action {
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-weight: 950;
}

.pg-appointments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pg-appointment-row {
    background: #ffffff;
    color: #111111;
    border-radius: 16px;
    padding: 12px;
    min-height: 58px;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    align-items: center;
}

.pg-appointment-time {
    color: #e11d2e;
    font-size: 15px;
    font-weight: 950;
}

.pg-appointment-client strong {
    color: #111111;
    font-size: 15px;
    font-weight: 950;
    display: block;
}

.pg-appointment-client span {
    color: #6b7280;
    font-size: 13px;
    font-weight: 750;
    display: block;
}

.pg-status-pill {
    border-radius: 999px;
    padding: 7px 11px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.pg-status-pill.programata {
    background: #e11d2e;
}

.pg-status-pill.confirmata {
    background: #74d900;
}

.pg-status-pill.anulata {
    background: #374151;
}

.pg-activity-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pg-activity-row {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pg-activity-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pg-activity-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 950;
}

.pg-activity-icon.green {
    background: #22c55e;
}

.pg-activity-icon.red {
    background: #e11d2e;
}

.pg-activity-icon.blue {
    background: #3b82f6;
}

.pg-activity-icon.purple {
    background: #a855f7;
}

.pg-activity-row strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
}

.pg-activity-row span {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
}

.pg-chart-panel {
    min-height: 255px;
}

.pg-fake-chart {
    position: relative;
    height: 125px;
    margin-top: 12px;
    border-radius: 16px;
    background:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 25%, 14.28% 100%;
    overflow: hidden;
}

.pg-chart-line {
    position: absolute;
    left: 8%;
    top: 52%;
    width: 84%;
    height: 3px;
    background: linear-gradient(90deg, #e11d2e, #ff4050);
    transform: skewY(-7deg);
    box-shadow: 0 0 18px rgba(225, 29, 46, 0.32);
}

.pg-chart-point {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #e11d2e;
    border: 2px solid #ff7581;
}

.pg-chart-point span {
    position: absolute;
    top: -31px;
    left: -13px;
    background: #e11d2e;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.pg-chart-point.p1 { left: 8%; top: 62%; }
.pg-chart-point.p2 { left: 22%; top: 48%; }
.pg-chart-point.p3 { left: 36%; top: 40%; }
.pg-chart-point.p4 { left: 50%; top: 53%; }
.pg-chart-point.p5 { left: 64%; top: 26%; }
.pg-chart-point.p6 { left: 78%; top: 48%; }
.pg-chart-point.p7 { left: 91%; top: 42%; }

.pg-chart-days {
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    color: #cfd2d6;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.pg-chart-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.pg-chart-summary div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 12px;
}

.pg-chart-summary strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.pg-chart-summary span {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 750;
}

.pg-subscriptions-panel {
    min-height: 255px;
}

.pg-subscription-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pg-subscription-row:last-of-type {
    border-bottom: none;
}

.pg-subscription-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #e11d2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-subscription-info strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
}

.pg-subscription-info span {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 750;
}

.pg-progress {
    margin-top: 6px;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.pg-progress div {
    height: 100%;
    background: #e11d2e;
    border-radius: 999px;
}

.pg-subscription-money {
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
    text-align: right;
}

.pg-subscription-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.pg-subscription-summary div {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 15px;
}

.pg-subscription-summary span {
    display: block;
    color: #9ca3af;
    font-weight: 800;
    font-size: 13px;
}

.pg-subscription-summary strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
    margin-top: 6px;
}

.pg-empty-box,
.pg-admin-loading,
.pg-admin-error {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    color: #d1d5db;
    font-weight: 850;
}

@media (max-width: 1350px) {
    .pg-admin-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pg-admin-main-grid,
    .pg-admin-bottom-grid {
        grid-template-columns: 1fr;
    }

    .pg-admin-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .pg-admin-hero-visual {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .pg-admin-topbar {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .pg-auth-pill {
        width: 100%;
        flex-wrap: wrap;
    }

    .pg-admin-hero {
        padding: 26px;
    }

    .pg-admin-hero-text h1 {
        font-size: 34px;
    }

    .pg-admin-kpis {
        grid-template-columns: 1fr;
    }

    .pg-action-grid,
    .pg-chart-summary,
    .pg-subscription-summary {
        grid-template-columns: 1fr;
    }

    .pg-appointment-row,
    .pg-subscription-row {
        grid-template-columns: 1fr;
    }
}

/* FORȚARE SIDEBAR COMPLET DARK */
.sidebar {
    background:
        radial-gradient(circle at top, rgba(225, 29, 46, 0.20), transparent 28%),
        linear-gradient(180deg, #050505 0%, #080808 50%, #0b0b0b 100%) !important;
}

.nav-scrollable {
    background: transparent !important;
}

.nav-menu {
    background: transparent !important;
}

.nav-item,
.nav-item a,
.nav-item .nav-link {
    background-color: transparent;
}

/* ASCUNDE TOP ROW ALB CU ABOUT */
.top-row.main-top-row {
    display: none !important;
}

/* COMPACTARE DASHBOARD ADMIN HOME */
.pg-admin-home {
    padding: 0 !important;
}

.content {
    padding: 18px 26px !important;
}

.pg-admin-hero {
    min-height: 190px !important;
    padding: 28px 36px !important;
}

.pg-admin-hero-text h1 {
    font-size: 38px !important;
}

.pg-admin-hero-text p {
    font-size: 16px !important;
}

.pg-kpi-card {
    min-height: 82px !important;
    padding: 15px !important;
}

.pg-kpi-card h2 {
    font-size: 23px !important;
}

.pg-admin-panel {
    padding: 17px !important;
}

.pg-panel-header h3,
.pg-panel-title-row h3 {
    font-size: 18px !important;
}

.pg-action-btn {
    min-height: 70px !important;
}

.pg-appointment-row {
    min-height: 50px !important;
    padding: 10px !important;
}
.sidebar {
    min-width: 270px !important;
    width: 270px !important;
}

.sidebar-logo {
    width: 120px !important;
    height: 120px !important;
}

.logo-link span {
    font-size: 24px !important;
}

.nav-item a,
.nav-item .nav-link {
    font-size: 15px !important;
    padding: 13px 16px !important;
}

/* ================================
   FIX SIDEBAR SCROLL + FUNDAL COMPLET DARK
   ================================ */

.sidebar {
    background:
        radial-gradient(circle at top, rgba(225, 29, 46, 0.22), transparent 28%),
        linear-gradient(180deg, #050505 0%, #080808 45%, #0b0b0b 100%) !important;
    min-height: 100vh !important;
    height: 100vh !important;
    overflow: hidden !important;
    position: sticky !important;
    top: 0 !important;
}

/* Zona de meniu trebuie să fie cea care face scroll, nu tot sidebar-ul */
.nav-scrollable {
    height: calc(100vh - 210px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background:
        linear-gradient(180deg, #050505 0%, #080808 55%, #0b0b0b 100%) !important;
    padding-bottom: 40px !important;
}

/* Elimină orice fundal vechi albastru/mov/alb */
.nav-menu,
.nav-item,
.nav-item a,
.nav-item .nav-link {
    background-color: transparent !important;
}

/* Fundal negru și pentru zona de logo */
.sidebar .top-row,
.logo-area {
    background:
        radial-gradient(circle at top, rgba(225, 29, 46, 0.22), transparent 42%),
        linear-gradient(180deg, #050505 0%, #080808 100%) !important;
}

/* Stil scrollbar sidebar */
.nav-scrollable::-webkit-scrollbar {
    width: 8px;
}

.nav-scrollable::-webkit-scrollbar-track {
    background: #080808;
}

.nav-scrollable::-webkit-scrollbar-thumb {
    background: rgba(225, 29, 46, 0.55);
    border-radius: 999px;
}

.nav-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(225, 29, 46, 0.85);
}

/* Logout să nu intre în zona albă */
.logout-link {
    margin-bottom: 30px !important;
}

/* ===============================
   PROFESSIONAL ICONS + HERO IMAGE
   =============================== */

.pg-kpi-icon i {
    font-size: 25px;
    color: #ffffff;
}

.pg-action-btn i {
    font-size: 26px;
    line-height: 1;
}

.pg-wide-action {
    gap: 10px;
}

.pg-wide-action i {
    font-size: 18px;
}

.pg-activity-icon i {
    font-size: 19px;
    color: #ffffff;
}

.pg-subscription-icon i {
    color: #ffffff;
    font-size: 19px;
}

/* Hero sportiv */
.pg-athlete-image {
    width: 340px;
    height: 190px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.15), rgba(8, 8, 8, 0.75)),
        url("images/hero-athlete.jpg");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(225, 29, 46, 0.45);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 34px rgba(225, 29, 46, 0.18);
}

/* Compactare generală dashboard */
.pg-admin-hero {
    min-height: 190px !important;
    padding: 28px 38px !important;
}

.pg-admin-hero-text h1 {
    font-size: 38px !important;
}

.pg-admin-hero-text p {
    font-size: 16px !important;
}

.pg-admin-hero-visual {
    width: 440px !important;
    height: 180px !important;
}

.pg-kpi-card {
    min-height: 86px !important;
    padding: 16px 18px !important;
}

.pg-kpi-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
}

.pg-kpi-card h2 {
    font-size: 24px !important;
}

.pg-admin-panel {
    padding: 18px !important;
}

.pg-action-btn {
    min-height: 72px !important;
}

.pg-appointment-row {
    min-height: 54px !important;
    padding: 10px 12px !important;
}

.pg-panel-header h3,
.pg-panel-title-row h3 {
    font-size: 18px !important;
}

/* Butoane mai elegante */
.pg-action-btn.white {
    background: linear-gradient(145deg, #ffffff, #f2f2f2) !important;
    color: #111111 !important;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pg-action-btn.white i {
    color: #e11d2e;
}

.pg-action-btn.red i {
    color: #ffffff;
}

/* HERO IMAGE FĂRĂ CARDURI PERFORMANȚĂ / OBIECTIV */
.pg-admin-hero-visual {
    width: 520px !important;
    height: 210px !important;
    justify-content: flex-end !important;
}

.pg-athlete-image {
    width: 500px !important;
    height: 210px !important;
    border-radius: 28px !important;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.65)),
        url("images/hero-athlete.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid rgba(225, 29, 46, 0.45) !important;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 34px rgba(225, 29, 46, 0.18) !important;
}

.pg-performance-card,
.pg-objective-card {
    display: none !important;
}

/* =========================================================
   FORCE CLIENTI PAGE DESIGN - PERSONAL GYM
   ========================================================= */

html body .clienti-modern-page {
    padding: 0 !important;
    color: #ffffff !important;
}

html body .clienti-hero {
    background:
        radial-gradient(circle at 80% 35%, rgba(225, 29, 46, 0.28), transparent 26%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    border-radius: 28px !important;
    padding: 34px 38px !important;
    margin-bottom: 18px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html body .clienti-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
}

html body .clienti-hero h1 {
    color: #ffffff !important;
    font-size: 44px !important;
    font-weight: 950 !important;
    margin: 0 0 10px 0 !important;
}

html body .clienti-hero p {
    color: #d1d5db !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

html body .clienti-add-btn {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.34) !important;
}

html body .clienti-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
}

html body .clienti-stat-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 22px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .clienti-stat-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .clienti-stat-icon i {
    color: #ffffff !important;
    font-size: 24px !important;
}

html body .clienti-stat-card span {
    display: block !important;
    color: #cfd2d6 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin-bottom: 4px !important;
}

html body .clienti-stat-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 27px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

html body .clienti-stat-card small {
    color: #22c55e !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body .clienti-filter-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    margin-bottom: 18px !important;
    display: grid !important;
    grid-template-columns: 1.5fr 220px 220px auto !important;
    gap: 14px !important;
    align-items: end !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .clienti-search-box {
    height: 52px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

html body .clienti-search-box i {
    color: #e11d2e !important;
    font-size: 20px !important;
}

html body .clienti-search-box input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    width: 100% !important;
}

html body .clienti-filter-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}

html body .clienti-filter-group label {
    color: #d1d5db !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

html body .clienti-filter-group select {
    height: 52px !important;
    border: none !important;
    outline: none !important;
    border-radius: 16px !important;
    padding: 0 14px !important;
    color: #111111 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

html body .clienti-reset-btn {
    height: 52px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    padding: 0 18px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

html body .clienti-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

html body .client-card-modern {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 34%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 26px !important;
    padding: 22px !important;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .client-card-top {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
}

html body .client-avatar {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 950 !important;
}

html body .client-title h3 {
    color: #ffffff !important;
    font-size: 21px !important;
    font-weight: 950 !important;
    margin: 0 0 4px 0 !important;
}

html body .client-title span {
    color: #e11d2e !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

html body .client-info-list {
    display: grid !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

html body .client-info-row {
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
}

html body .client-info-row i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
    background: rgba(225, 29, 46, 0.13) !important;
    color: #e11d2e !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 17px !important;
}

html body .client-info-row span {
    display: block !important;
    color: #9ca3af !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body .client-info-row strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

html body .client-card-actions {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
}

html body .client-action-btn {
    border: none !important;
    border-radius: 15px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

html body .client-action-btn.subscription {
    background: #ffffff !important;
    color: #111111 !important;
}

html body .client-action-btn.subscription i {
    color: #e11d2e !important;
}

html body .client-action-btn.delete {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
}

@media (max-width: 1350px) {
    html body .clienti-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body .clienti-filter-card {
        grid-template-columns: 1fr 1fr !important;
    }

    html body .clienti-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 800px) {
    html body .clienti-hero {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    html body .clienti-stats-grid,
    html body .clienti-filter-card,
    html body .clienti-grid {
        grid-template-columns: 1fr !important;
    }

    html body .client-card-actions {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   CLIENT CARD - 3 ACTIONS
   ========================================================= */

html body .client-card-actions.three-actions {
    display: grid !important;
    grid-template-columns: 1fr 1.35fr auto !important;
    gap: 10px !important;
}

html body .client-action-btn.edit {
    background: linear-gradient(145deg, #1f2937, #111827) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

html body .client-action-btn.edit i {
    color: #ffffff !important;
}

html body .client-action-btn.edit:hover {
    background: linear-gradient(145deg, #374151, #1f2937) !important;
}

/* =========================================================
   EDIT CLIENT PAGE
   ========================================================= */

.edit-client-page {
    color: #ffffff;
}

.edit-client-hero {
    background:
        radial-gradient(circle at 82% 35%, rgba(225, 29, 46, 0.30), transparent 28%),
        linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(225, 29, 46, 0.28);
    border-radius: 28px;
    padding: 34px 38px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.edit-client-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e11d2e;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.edit-client-hero h1 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 950;
    margin: 0 0 10px 0;
}

.edit-client-hero p {
    color: #d1d5db;
    font-size: 17px;
    font-weight: 650;
    margin: 0;
}

.edit-client-back-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.edit-client-back-btn:hover {
    background: rgba(225, 29, 46, 0.16);
}

.edit-client-card {
    max-width: 900px;
    margin: 0 auto;
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.18), transparent 34%),
        linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 34px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.edit-client-avatar {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 950;
    margin: 0 auto 18px auto;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.32);
}

.edit-client-card h2 {
    color: #ffffff;
    text-align: center;
    font-size: 34px;
    font-weight: 950;
    margin: 0 0 8px 0;
}

.edit-client-subtitle {
    text-align: center;
    color: #9ca3af;
    font-weight: 750;
    margin-bottom: 28px;
}

.edit-client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.edit-client-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-client-full {
    grid-column: 1 / -1;
}

.edit-client-group label {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 900;
}

.edit-client-input {
    height: 54px;
    border: none;
    outline: none;
    border-radius: 16px;
    padding: 0 16px;
    color: #111111;
    background: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.edit-client-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.edit-client-save-btn {
    flex: 1;
    height: 54px;
    border: none;
    border-radius: 17px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.30);
}

.edit-client-cancel-btn {
    height: 54px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
}

.edit-client-success {
    background-color: rgba(22, 163, 74, 0.14);
    color: #86efac;
    border: 1px solid rgba(22, 163, 74, 0.35);
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 20px;
    font-weight: 900;
}

.edit-client-error {
    background-color: rgba(225, 29, 46, 0.14);
    color: #fecaca;
    border: 1px solid rgba(225, 29, 46, 0.35);
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 20px;
    font-weight: 900;
}

.edit-client-loading {
    background: linear-gradient(145deg, #080808, #151515);
    color: #d1d5db;
    border-radius: 22px;
    padding: 24px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
    .edit-client-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .edit-client-grid {
        grid-template-columns: 1fr;
    }

    .edit-client-actions {
        flex-direction: column;
    }

    html body .client-card-actions.three-actions {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   ATRIBUIE ABONAMENT PAGE - PREMIUM DESIGN
   ========================================================= */

.atribuie-page {
    color: #ffffff;
}

.atribuie-hero {
    background:
        radial-gradient(circle at 82% 35%, rgba(225, 29, 46, 0.30), transparent 28%),
        linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(225, 29, 46, 0.28);
    border-radius: 28px;
    padding: 34px 38px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.atribuie-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e11d2e;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.atribuie-hero h1 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 950;
    margin: 0 0 10px 0;
}

.atribuie-hero p {
    color: #d1d5db;
    font-size: 17px;
    font-weight: 650;
    margin: 0;
}

.atribuie-hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 26px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(225, 29, 46, 0.35);
}

.atribuie-hero-icon i {
    font-size: 40px;
    color: #ffffff;
}

.atribuie-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.atribuie-stat-card {
    background: linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.atribuie-stat-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    display: flex;
    align-items: center;
    justify-content: center;
}

.atribuie-stat-icon i {
    color: #ffffff;
    font-size: 24px;
}

.atribuie-stat-card span {
    display: block;
    color: #cfd2d6;
    font-size: 14px;
    font-weight: 850;
    margin-bottom: 4px;
}

.atribuie-stat-card strong {
    display: block;
    color: #ffffff;
    font-size: 27px;
    font-weight: 950;
    line-height: 1;
}

.atribuie-stat-card small {
    color: #22c55e;
    font-size: 12px;
    font-weight: 850;
}

.atribuie-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 18px;
}

.atribuie-form-card,
.atribuie-preview-card {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 34%),
        linear-gradient(145deg, #080808, #151515);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.atribuie-form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.atribuie-form-title i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(225, 29, 46, 0.16);
    color: #e11d2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.atribuie-form-title h2,
.atribuie-preview-card h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 950;
    margin: 0;
}

.atribuie-form-title p {
    color: #9ca3af;
    margin: 4px 0 0 0;
    font-weight: 700;
}

.atribuie-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.atribuie-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.atribuie-full {
    grid-column: 1 / -1;
}

.atribuie-group label {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 900;
}

.atribuie-input {
    height: 56px;
    border: none;
    outline: none;
    border-radius: 16px;
    padding: 0 16px;
    color: #111111;
    background: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.atribuie-submit-btn {
    width: 100%;
    height: 56px;
    margin-top: 24px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.32);
}

.atribuie-submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #f12437, #c51524);
}

.atribuie-preview-card {
    position: sticky;
    top: 18px;
    height: fit-content;
}

.atribuie-preview-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.atribuie-preview-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(145deg, #e11d2e, #b31321);
    display: flex;
    align-items: center;
    justify-content: center;
}

.atribuie-preview-icon i {
    color: #ffffff;
    font-size: 26px;
}

.atribuie-preview-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.atribuie-preview-row:last-child {
    border-bottom: none;
}

.atribuie-preview-row span {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 5px;
}

.atribuie-preview-row strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 950;
}

.atribuie-success-message {
    background-color: rgba(22, 163, 74, 0.14);
    color: #86efac;
    border: 1px solid rgba(22, 163, 74, 0.35);
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    font-weight: 900;
}

.atribuie-error-message {
    background-color: rgba(225, 29, 46, 0.14);
    color: #fecaca;
    border: 1px solid rgba(225, 29, 46, 0.35);
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .atribuie-layout {
        grid-template-columns: 1fr;
    }

    .atribuie-stats-grid {
        grid-template-columns: 1fr;
    }

    .atribuie-grid {
        grid-template-columns: 1fr;
    }

    .atribuie-preview-card {
        position: static;
    }
}

/* =========================================================
   FORCE ADAUGA PROGRAMARE PAGE DESIGN
   ========================================================= */

html body .adauga-programare-page {
    color: #ffffff !important;
}

html body .adauga-programare-hero {
    background:
        radial-gradient(circle at 82% 35%, rgba(225, 29, 46, 0.30), transparent 28%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    border-radius: 28px !important;
    padding: 34px 38px !important;
    margin-bottom: 22px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html body .adauga-programare-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
}

html body .adauga-programare-hero h1 {
    color: #ffffff !important;
    font-size: 44px !important;
    font-weight: 950 !important;
    margin: 0 0 10px 0 !important;
}

html body .adauga-programare-hero p {
    color: #d1d5db !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

html body .adauga-programare-hero-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 26px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 16px 34px rgba(225, 29, 46, 0.35) !important;
}

html body .adauga-programare-hero-icon i {
    font-size: 40px !important;
    color: #ffffff !important;
}

html body .adauga-programare-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

html body .adauga-programare-stat-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 22px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .adauga-programare-stat-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .adauga-programare-stat-icon i {
    color: #ffffff !important;
    font-size: 24px !important;
}

html body .adauga-programare-stat-card span {
    display: block !important;
    color: #cfd2d6 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin-bottom: 4px !important;
}

html body .adauga-programare-stat-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 25px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
}

html body .adauga-programare-stat-card small {
    color: #22c55e !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body .adauga-programare-layout {
    display: grid !important;
    grid-template-columns: 1.4fr 0.8fr !important;
    gap: 18px !important;
}

html body .adauga-programare-form-card,
html body .adauga-programare-preview-card,
html body .adauga-programare-error {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 34%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    padding: 28px !important;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .adauga-programare-form-title {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
}

html body .adauga-programare-form-title i {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
}

html body .adauga-programare-form-title h2,
html body .adauga-programare-preview-card h2 {
    color: #ffffff !important;
    font-size: 25px !important;
    font-weight: 950 !important;
    margin: 0 !important;
}

html body .adauga-programare-form-title p,
html body .adauga-programare-preview-header p {
    color: #9ca3af !important;
    margin: 4px 0 0 0 !important;
    font-weight: 700 !important;
}

html body .adauga-programare-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

html body .adauga-programare-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

html body .adauga-programare-full {
    grid-column: 1 / -1 !important;
}

html body .adauga-programare-group label {
    color: #d1d5db !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

html body .adauga-programare-input {
    height: 56px !important;
    border: none !important;
    outline: none !important;
    border-radius: 16px !important;
    padding: 0 16px !important;
    color: #111111 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

html body .adauga-programare-textarea {
    height: auto !important;
    padding: 14px 16px !important;
    resize: vertical !important;
}

html body .adauga-programare-submit-btn {
    width: 100% !important;
    height: 56px !important;
    margin-top: 24px !important;
    border: none !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.32) !important;
}

html body .adauga-programare-preview-card {
    position: sticky !important;
    top: 18px !important;
    height: fit-content !important;
}

html body .adauga-programare-preview-header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
}

html body .adauga-programare-preview-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .adauga-programare-preview-icon i {
    color: #ffffff !important;
    font-size: 26px !important;
}

html body .adauga-programare-preview-row {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .adauga-programare-preview-row:last-child {
    border-bottom: none !important;
}

html body .adauga-programare-preview-row span {
    display: block !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    margin-bottom: 5px !important;
}

html body .adauga-programare-preview-row strong {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 950 !important;
}

html body .adauga-programare-success-message {
    background-color: rgba(22, 163, 74, 0.14) !important;
    color: #86efac !important;
    border: 1px solid rgba(22, 163, 74, 0.35) !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    margin-bottom: 18px !important;
    font-weight: 900 !important;
}

html body .adauga-programare-error-message {
    background-color: rgba(225, 29, 46, 0.14) !important;
    color: #fecaca !important;
    border: 1px solid rgba(225, 29, 46, 0.35) !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
    margin-bottom: 18px !important;
    font-weight: 900 !important;
}

@media (max-width: 1100px) {
    html body .adauga-programare-layout {
        grid-template-columns: 1fr !important;
    }

    html body .adauga-programare-stats-grid {
        grid-template-columns: 1fr !important;
    }

    html body .adauga-programare-grid {
        grid-template-columns: 1fr !important;
    }

    html body .adauga-programare-preview-card {
        position: static !important;
    }
}

/* ABONAMENT ACTIV PE CARD CLIENT */
html body .client-subscription-row {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 16px !important;
    padding: 10px !important;
}

html body .client-subscription-row i {
    background: rgba(225, 29, 46, 0.18) !important;
    color: #e11d2e !important;
}

html body .client-subscription-details {
    display: block !important;
    color: #22c55e !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    margin-top: 4px !important;
}

html body .client-no-subscription {
    color: #fca5a5 !important;
}

/* =========================================================
   ABONAMENTE CLIENTI PAGE - PREMIUM DESIGN
   ========================================================= */

html body .abonamente-clienti-page {
    color: #ffffff !important;
}

html body .abonamente-clienti-hero {
    background:
        radial-gradient(circle at 82% 35%, rgba(225, 29, 46, 0.30), transparent 28%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    border-radius: 28px !important;
    padding: 34px 38px !important;
    margin-bottom: 22px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html body .abonamente-clienti-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
}

html body .abonamente-clienti-hero h1 {
    color: #ffffff !important;
    font-size: 44px !important;
    font-weight: 950 !important;
    margin: 0 0 10px 0 !important;
}

html body .abonamente-clienti-hero p {
    color: #d1d5db !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

html body .abonamente-clienti-hero-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 26px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 16px 34px rgba(225, 29, 46, 0.35) !important;
}

html body .abonamente-clienti-hero-icon i {
    color: #ffffff !important;
    font-size: 40px !important;
}

html body .abonamente-clienti-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

html body .abonamente-clienti-stat-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 22px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .abonamente-clienti-stat-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .abonamente-clienti-stat-icon i {
    color: #ffffff !important;
    font-size: 24px !important;
}

html body .abonamente-clienti-stat-card span {
    display: block !important;
    color: #cfd2d6 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin-bottom: 4px !important;
}

html body .abonamente-clienti-stat-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 25px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
}

html body .abonamente-clienti-stat-card small {
    color: #22c55e !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body .abonamente-clienti-filter-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    margin-bottom: 18px !important;
    display: grid !important;
    grid-template-columns: 1.5fr 220px 220px auto !important;
    gap: 14px !important;
    align-items: end !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .abonamente-clienti-search-box {
    height: 52px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

html body .abonamente-clienti-search-box i {
    color: #e11d2e !important;
    font-size: 20px !important;
}

html body .abonamente-clienti-search-box input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    width: 100% !important;
}

html body .abonamente-clienti-filter-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}

html body .abonamente-clienti-filter-group label {
    color: #d1d5db !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

html body .abonamente-clienti-filter-group select {
    height: 52px !important;
    border: none !important;
    outline: none !important;
    border-radius: 16px !important;
    padding: 0 14px !important;
    color: #111111 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

html body .abonamente-clienti-reset-btn {
    height: 52px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    padding: 0 18px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

html body .abonamente-clienti-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

html body .abonament-client-card {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 34%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 26px !important;
    padding: 22px !important;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .abonament-client-card-header {
    display: grid !important;
    grid-template-columns: 58px 1fr auto !important;
    gap: 14px !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

html body .abonament-client-avatar {
    width: 58px !important;
    height: 58px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 950 !important;
}

html body .abonament-client-card-header h3 {
    color: #ffffff !important;
    font-size: 21px !important;
    font-weight: 950 !important;
    margin: 0 0 4px 0 !important;
}

html body .abonament-client-card-header span {
    color: #e11d2e !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

html body .abonament-client-status {
    border-radius: 999px !important;
    padding: 8px 14px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

html body .abonament-client-status.activ {
    background: #22c55e !important;
}

html body .abonament-client-status.expirat {
    background: #e11d2e !important;
}

html body .abonament-client-info-list {
    display: grid !important;
    gap: 12px !important;
}

html body .abonament-client-info-row {
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
}

html body .abonament-client-info-row i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
    background: rgba(225, 29, 46, 0.13) !important;
    color: #e11d2e !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 17px !important;
}

html body .abonament-client-info-row span {
    display: block !important;
    color: #9ca3af !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

html body .abonament-client-info-row strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

html body .abonament-client-highlight {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 16px !important;
    padding: 10px !important;
}

html body .abonament-client-highlight.activ strong {
    color: #22c55e !important;
}

html body .abonament-client-highlight.expirat strong {
    color: #fca5a5 !important;
}

html body .abonamente-clienti-empty,
html body .abonamente-clienti-loading,
html body .abonamente-clienti-error {
    background: linear-gradient(145deg, #080808, #151515) !important;
    color: #d1d5db !important;
    border-radius: 22px !important;
    padding: 24px !important;
    font-weight: 900 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

html body .abonamente-clienti-empty i {
    color: #e11d2e !important;
}

@media (max-width: 1350px) {
    html body .abonamente-clienti-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body .abonamente-clienti-filter-card {
        grid-template-columns: 1fr 1fr !important;
    }

    html body .abonamente-clienti-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 800px) {
    html body .abonamente-clienti-hero {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    html body .abonamente-clienti-stats-grid,
    html body .abonamente-clienti-filter-card,
    html body .abonamente-clienti-grid {
        grid-template-columns: 1fr !important;
    }

    html body .abonament-client-card-header {
        grid-template-columns: 1fr !important;
    }
}

html body .abonament-client-cancel-btn {
    width: 100% !important;
    height: 48px !important;
    margin-top: 18px !important;
    border: none !important;
    border-radius: 16px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    cursor: pointer !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.28) !important;
}

html body .abonament-client-cancel-btn:hover {
    background: linear-gradient(145deg, #f12437, #c51524) !important;
    transform: translateY(-2px);
}

/* =========================================================
   HOME ADMIN - REAL LINE CHART PREZENTE
   ========================================================= */

.pg-line-chart {
    height: 180px;
    margin-top: 18px;
    border-radius: 18px;
    background:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 100% 33.33%, 16.66% 100%;
    padding: 12px 14px 8px 14px;
    position: relative;
    overflow: hidden;
}

.pg-line-chart svg {
    width: 100%;
    height: 140px;
    display: block;
}

.pg-chart-grid-line {
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 1;
}

.pg-chart-grid-line.soft {
    stroke: rgba(255, 255, 255, 0.07);
}

.pg-chart-line-active {
    fill: none;
    stroke: #e11d2e;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(225, 29, 46, 0.45));
}

.pg-chart-point-active {
    fill: #e11d2e;
    stroke: #ff6b78;
    stroke-width: 4;
    filter: drop-shadow(0 0 10px rgba(225, 29, 46, 0.55));
}

.pg-chart-value {
    fill: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.pg-line-chart-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 950;
    margin-top: 2px;
}

/* =========================================================
   HOME ADMIN - PROGRAMARI AZI COMPACT + SCROLL
   ========================================================= */

html body .pg-appointments-scroll {
    max-height: 280px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px !important;
    display: grid !important;
    gap: 10px !important;
}

html body .pg-appointment-row.compact {
    min-height: 62px !important;
    padding: 10px 14px !important;
    border-radius: 18px !important;
    grid-template-columns: 75px 1fr auto !important;
}

html body .pg-appointment-row.compact .pg-appointment-time {
    font-size: 17px !important;
    font-weight: 950 !important;
}

html body .pg-appointment-row.compact .pg-appointment-client strong {
    font-size: 16px !important;
    line-height: 1.1 !important;
}

html body .pg-appointment-row.compact .pg-appointment-client span {
    font-size: 13px !important;
    line-height: 1.1 !important;
}

html body .pg-appointment-row.compact .pg-status-pill {
    min-width: 96px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
}

/* scrollbar special pentru secțiunea Programări de azi */
html body .pg-appointments-scroll::-webkit-scrollbar {
    width: 8px !important;
}

html body .pg-appointments-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 999px !important;
}

html body .pg-appointments-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e11d2e, #b31321) !important;
    border-radius: 999px !important;
}

html body .pg-appointments-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f12437, #c51524) !important;
}

/* FORCE SCROLL PROGRAMĂRI DE AZI - HOME */
html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll {
    height: 300px !important;
    max-height: 300px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    padding-right: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* fiecare programare rămâne compactă și nu se micșorează */
html body .pg-appointments-list.pg-appointments-scroll .pg-appointment-row.compact {
    flex: 0 0 auto !important;
    min-height: 62px !important;
    height: 62px !important;
    padding: 8px 14px !important;
    border-radius: 18px !important;
    display: grid !important;
    grid-template-columns: 72px 1fr auto !important;
    align-items: center !important;
}

/* scrollbar custom */
html body .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar {
    width: 8px !important;
}

html body .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 999px !important;
}

html body .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e11d2e, #b31321) !important;
    border-radius: 999px !important;
}

html body .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f12437, #c51524) !important;
}

/* SELECTOR ORĂ PROGRAMARE - 15 MIN */
html body .programare-time-select {
    appearance: none !important;
    background:
        linear-gradient(145deg, #ffffff, #f4f4f4) !important;
    color: #111111 !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
}

html body .programare-time-select:focus {
    outline: 3px solid rgba(225, 29, 46, 0.28) !important;
    box-shadow:
        0 0 0 4px rgba(225, 29, 46, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

/* =========================================================
   MESAJE PROGRAMĂRI - CLASIC RED / GREEN
   ========================================================= */

html body .adauga-programare-success-message,
html body .programari-success-message,
html body .register-success {
    background: #dcfce7 !important;
    color: #15803d !important;
    border: 1px solid #86efac !important;
    padding: 15px 18px !important;
    border-radius: 16px !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    box-shadow: 0 8px 20px rgba(21, 128, 61, 0.12) !important;
}

html body .adauga-programare-error-message,
html body .programari-error-message,
html body .register-error {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border: 1px solid #fca5a5 !important;
    padding: 15px 18px !important;
    border-radius: 16px !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.12) !important;
}

/* =========================================================
   CLIENT HOME DASHBOARD
   ========================================================= */

html body .client-home-page {
    color: #ffffff !important;
}

html body .client-home-topbar {
    background: linear-gradient(145deg, #050505, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 26px !important;
    padding: 16px 22px !important;
    margin-bottom: 22px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18) !important;
}

html body .client-home-topbar-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 950 !important;
}

html body .client-home-menu-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .client-home-user-pill {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 10px 14px !important;
}

html body .client-home-notification {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

html body .client-home-notification i {
    color: #ffffff !important;
    font-size: 20px !important;
}

html body .client-home-notification span {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #e11d2e !important;
    color: #ffffff !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 950 !important;
}

html body .client-home-user-avatar {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

html body .client-home-user-pill strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
}

html body .client-home-user-pill small {
    display: block !important;
    color: #9ca3af !important;
    font-weight: 800 !important;
}

html body .client-home-hero {
    background:
        radial-gradient(circle at 86% 50%, rgba(225, 29, 46, 0.38), transparent 30%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    border-radius: 30px !important;
    padding: 44px 46px !important;
    margin-bottom: 24px !important;
    min-height: 250px !important;
    display: grid !important;
    grid-template-columns: 1.3fr 0.9fr !important;
    gap: 28px !important;
    align-items: center !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20) !important;
}

html body .client-home-hero-text h1 {
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 18px 0 !important;
}

html body .client-home-hero-text p {
    color: #d1d5db !important;
    font-size: 22px !important;
    font-weight: 650 !important;
    margin: 6px 0 !important;
}

html body .client-home-hero-visual {
    height: 210px !important;
    position: relative !important;
}

html body .client-home-calendar-card {
    position: absolute !important;
    left: 18px !important;
    top: 20px !important;
    width: 110px !important;
    height: 110px !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 50px !important;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.28) !important;
}

html body .client-home-logo-card {
    position: absolute !important;
    right: 50px !important;
    top: 24px !important;
    width: 145px !important;
    height: 145px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    border: 1px solid rgba(225, 29, 46, 0.45) !important;
}

html body .client-home-logo-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

html body .client-home-dumbbell-card {
    position: absolute !important;
    left: 130px !important;
    bottom: 14px !important;
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.42) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 42px !important;
}

html body .client-home-kpis {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 24px !important;
}

html body .client-home-kpi-card {
    background: linear-gradient(145deg, #070707, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 26px !important;
    padding: 24px !important;
    min-height: 130px !important;
    display: grid !important;
    grid-template-columns: 64px 1fr 38px !important;
    gap: 16px !important;
    align-items: center !important;
    text-decoration: none !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

html body .client-home-kpi-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
}

html body .client-home-kpi-icon.red {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
}

html body .client-home-kpi-icon.darkred {
    background: linear-gradient(145deg, #991b1b, #7f1d1d) !important;
}

html body .client-home-kpi-icon.gold {
    background: linear-gradient(145deg, #f59e0b, #b45309) !important;
}

html body .client-home-kpi-card span {
    display: block !important;
    color: #d1d5db !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

html body .client-home-kpi-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 1000 !important;
    line-height: 1.1 !important;
}

html body .client-home-kpi-card small {
    display: block !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    margin-top: 8px !important;
}

html body .client-home-date-text {
    font-size: 21px !important;
}

html body .client-home-kpi-arrow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .client-home-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

html body .client-home-panel {
    background: linear-gradient(145deg, #060606, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 30px !important;
    padding: 28px !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16) !important;
}

html body .client-home-panel-title {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
}

html body .client-home-panel-title span {
    width: 54px !important;
    height: 54px !important;
    border-radius: 18px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

html body .client-home-panel-title h3 {
    color: #ffffff !important;
    font-size: 30px !important;
    font-weight: 1000 !important;
    margin: 0 !important;
}

html body .client-home-next-appointment {
    background: linear-gradient(145deg, rgba(225, 29, 46, 0.10), rgba(255, 255, 255, 0.035)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 22px !important;
    display: grid !important;
    grid-template-columns: 160px 1fr !important;
    gap: 22px !important;
    margin-bottom: 20px !important;
}

html body .client-home-date-box {
    background: linear-gradient(145deg, rgba(225, 29, 46, 0.22), rgba(225, 29, 46, 0.08)) !important;
    border-radius: 22px !important;
    padding: 18px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

html body .client-home-date-box span {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

html body .client-home-date-box strong {
    color: #ffffff !important;
    font-size: 54px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
}

html body .client-home-date-box small {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

html body .client-home-appointment-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 13px !important;
}

html body .client-home-appointment-info p {
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

html body .client-home-appointment-info i {
    color: #e11d2e !important;
}

html body .client-home-main-btn,
html body .client-home-secondary-btn {
    width: 100% !important;
    height: 58px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

html body .client-home-main-btn {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.28) !important;
}

html body .client-home-secondary-btn {
    background: rgba(255, 255, 255, 0.045) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .client-home-news-list {
    display: grid !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
}

html body .client-home-news-item {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    display: grid !important;
    grid-template-columns: 78px 1fr !important;
    gap: 16px !important;
}

html body .client-home-news-icon {
    width: 78px !important;
    height: 78px !important;
    border-radius: 50% !important;
    background: rgba(225, 29, 46, 0.12) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
}

html body .client-home-news-top {
    display: flex !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 8px !important;
}

html body .client-home-news-top strong {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

html body .client-home-news-top span {
    color: #9ca3af !important;
    font-weight: 700 !important;
}

html body .client-home-news-item p {
    color: #d1d5db !important;
    margin: 0 0 10px 0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

html body .client-home-news-item a {
    color: #e11d2e !important;
    font-weight: 950 !important;
    text-decoration: none !important;
}

@media (max-width: 1300px) {
    html body .client-home-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body .client-home-main-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 850px) {
    html body .client-home-hero {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-kpis {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-topbar {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* CLIENT HOME - URMĂTOAREA PROGRAMARE FUNCȚIONALĂ */

/* Container butoane - una sub alta */
html body .client-home-appointment-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 24px !important;
    width: 100% !important;
}

/* Buton roșu - Vezi toate programările */
html body .client-home-appointment-actions .client-home-main-btn {
    width: 100% !important;
    min-height: 64px !important;
    border-radius: 22px !important;
    text-decoration: none !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.28) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Buton alb - Adaugă programare */
html body .client-home-appointment-actions .client-home-add-btn {
    width: 100% !important;
    min-height: 64px !important;
    border-radius: 22px !important;
    text-decoration: none !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.2s ease-in-out !important;
}

html body .client-home-appointment-actions .client-home-main-btn:hover,
html body .client-home-appointment-actions .client-home-add-btn:hover {
    transform: translateY(-2px) !important;
}

html body .client-home-appointment-actions .client-home-main-btn:hover {
    background: linear-gradient(145deg, #f12437, #c51524) !important;
    box-shadow: 0 18px 34px rgba(225, 29, 46, 0.34) !important;
}

html body .client-home-appointment-actions .client-home-add-btn:hover {
    background: #f3f4f6 !important;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.20) !important;
}

/* Iconițe din butoane */
html body .client-home-appointment-actions a i:first-child {
    font-size: 22px !important;
}

html body .client-home-appointment-actions a i:last-child {
    font-size: 22px !important;
    margin-left: 6px !important;
}

/* Card când clientul nu are programări */
html body .client-home-empty-appointment {
    background: linear-gradient(145deg, rgba(225, 29, 46, 0.10), rgba(255, 255, 255, 0.035)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 26px !important;
    margin-bottom: 20px !important;
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

html body .client-home-empty-appointment i {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 16px !important;
}

html body .client-home-empty-appointment h4 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 950 !important;
    margin: 0 0 8px 0 !important;
}

html body .client-home-empty-appointment p {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    max-width: 420px !important;
    margin: 0 !important;
}

@media (max-width: 850px) {
    html body .client-home-appointment-actions {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    html body .client-home-appointment-actions .client-home-main-btn,
    html body .client-home-appointment-actions .client-home-add-btn {
        font-size: 18px !important;
        min-height: 58px !important;
    }
}

/* =========================================================
   FORCE CLIENT HOME BUTTONS ONE UNDER ANOTHER
   ========================================================= */

html body .client-home-panel .client-home-appointment-actions {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: auto auto !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 24px !important;
}

html body .client-home-panel .client-home-appointment-actions a,
html body .client-home-panel .client-home-appointment-actions .client-home-main-btn,
html body .client-home-panel .client-home-appointment-actions .client-home-add-btn {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: 1 / -1 !important;
    display: flex !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
}

html body .client-home-panel .client-home-appointment-actions .client-home-main-btn {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border-radius: 22px !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
}

html body .client-home-panel .client-home-appointment-actions .client-home-add-btn {
    background: #ffffff !important;
    color: #111111 !important;
    border-radius: 22px !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
}

/* =========================================================
   CLIENT HOME - CARD TIP ABONAMENT COMPACT
   ========================================================= */

html body .client-home-subscription-card {
    grid-template-columns: 64px 1fr 34px !important;
    gap: 14px !important;
    overflow: hidden !important;
}

html body .client-home-subscription-card > div:nth-child(2) {
    min-width: 0 !important;
    overflow: hidden !important;
}

html body .client-home-subscription-card strong {
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    max-width: 100% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

html body .client-home-subscription-card small {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin-top: 8px !important;
    display: block !important;
}

html body .client-home-subscription-card .client-home-kpi-arrow {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
}

/* =========================================================
   CLIENT HOME - KPI CARDS CLEAN TEXT
   ========================================================= */

html body .client-home-kpi-card {
    grid-template-columns: 58px 1fr 34px !important;
    gap: 16px !important;
    padding: 22px 20px !important;
    min-height: 150px !important;
    align-items: center !important;
}

html body .client-home-kpi-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
}

html body .client-home-kpi-card span {
    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    margin-bottom: 8px !important;
    max-width: 150px !important;
}

html body .client-home-kpi-card strong {
    font-size: 24px !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
}

html body .client-home-kpi-card small {
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    max-width: 150px !important;
}

/* Prezențe - să nu mai arate rupt urât */
html body .client-home-kpi-card small {
    overflow-wrap: normal !important;
    word-break: normal !important;
}

/* Card abonament - nume scurt, aspect controlat */
html body .client-home-subscription-card strong {
    font-size: 22px !important;
    line-height: 1.05 !important;
    -webkit-line-clamp: 2 !important;
}

html body .client-home-subscription-card small {
    max-width: 130px !important;
}

/* Card plata - data să fie lizibilă */
html body .client-home-date-text {
    font-size: 24px !important;
    line-height: 1.05 !important;
}

/* CLIENT HOME - EMPTY NEWS */

html body .client-home-empty-news {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 34px 24px !important;
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 18px !important;
}

html body .client-home-empty-news i {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 16px !important;
}

html body .client-home-empty-news h4 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 950 !important;
    margin: 0 0 8px 0 !important;
}

html body .client-home-empty-news p {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    max-width: 420px !important;
    margin: 0 !important;
}

/* =========================================================
   ADMIN ANNOUNCEMENTS PAGE
   ========================================================= */

html body .admin-announcements-page {
    color: #ffffff !important;
}

html body .admin-announcements-hero {
    background:
        radial-gradient(circle at 86% 50%, rgba(225, 29, 46, 0.34), transparent 30%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    border-radius: 30px !important;
    padding: 44px 46px !important;
    margin-bottom: 24px !important;
    min-height: 220px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20) !important;
}

html body .admin-announcements-hero span {
    color: #e11d2e !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    letter-spacing: 3px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
}

html body .admin-announcements-hero h1 {
    color: #ffffff !important;
    font-size: clamp(38px, 4vw, 64px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 14px 0 !important;
}

html body .admin-announcements-hero p {
    color: #d1d5db !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

html body .admin-announcements-hero-icon {
    width: 120px !important;
    height: 120px !important;
    border-radius: 30px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 54px !important;
    box-shadow: 0 20px 36px rgba(225, 29, 46, 0.28) !important;
}

html body .admin-announcements-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 24px !important;
}

html body .admin-announcements-stat-card {
    background: linear-gradient(145deg, #070707, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 26px !important;
    padding: 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

html body .admin-announcements-stat-card > div {
    width: 64px !important;
    height: 64px !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
}

html body .admin-announcements-stat-card span {
    color: #d1d5db !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

html body .admin-announcements-stat-card strong {
    color: #ffffff !important;
    display: block !important;
    font-size: 34px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    margin: 6px 0 !important;
}

html body .admin-announcements-stat-card small {
    color: #22c55e !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

html body .admin-announcements-layout {
    display: grid !important;
    grid-template-columns: 0.9fr 1.2fr !important;
    gap: 24px !important;
}

html body .admin-announcements-form-card,
html body .admin-announcements-list-card {
    background: linear-gradient(145deg, #060606, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 30px !important;
    padding: 28px !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16) !important;
}

html body .admin-announcements-card-title {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
}

html body .admin-announcements-card-title > div {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 25px !important;
}

html body .admin-announcements-card-title h2 {
    color: #ffffff !important;
    font-size: 30px !important;
    font-weight: 1000 !important;
    margin: 0 !important;
}

html body .admin-announcements-card-title p {
    color: #9ca3af !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    margin: 4px 0 0 0 !important;
}

html body .admin-announcements-form-group {
    margin-bottom: 18px !important;
}

html body .admin-announcements-form-group label {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

html body .admin-announcements-input {
    width: 100% !important;
    height: 58px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: none !important;
    padding: 0 18px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    outline: none !important;
}

html body .admin-announcements-textarea {
    height: auto !important;
    min-height: 130px !important;
    padding: 16px 18px !important;
    resize: vertical !important;
}

html body .admin-announcements-switch-row {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 20px !important;
    padding: 16px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
}

html body .admin-announcements-switch-row strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
}

html body .admin-announcements-switch-row small {
    display: block !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    margin-top: 4px !important;
}

html body .admin-announcements-switch {
    position: relative !important;
    width: 60px !important;
    height: 34px !important;
    flex-shrink: 0 !important;
}

html body .admin-announcements-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

html body .admin-announcements-switch span {
    position: absolute !important;
    cursor: pointer !important;
    inset: 0 !important;
    background: #374151 !important;
    border-radius: 999px !important;
    transition: 0.2s !important;
}

html body .admin-announcements-switch span::before {
    content: "" !important;
    position: absolute !important;
    width: 26px !important;
    height: 26px !important;
    left: 4px !important;
    top: 4px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    transition: 0.2s !important;
}

html body .admin-announcements-switch input:checked + span {
    background: #e11d2e !important;
}

html body .admin-announcements-switch input:checked + span::before {
    transform: translateX(26px) !important;
}

html body .admin-announcements-form-actions {
    display: grid !important;
    gap: 12px !important;
}

html body .admin-announcements-save-btn,
html body .admin-announcements-cancel-btn {
    width: 100% !important;
    height: 58px !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.2s ease !important;
}

html body .admin-announcements-save-btn {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.28) !important;
}

html body .admin-announcements-cancel-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
}

html body .admin-announcements-save-btn:hover,
html body .admin-announcements-cancel-btn:hover {
    transform: translateY(-2px) !important;
}

html body .admin-announcements-list {
    display: grid !important;
    gap: 16px !important;
}

html body .admin-announcements-item {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    display: grid !important;
    grid-template-columns: 72px 1fr !important;
    gap: 16px !important;
}

html body .admin-announcements-item-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
}

html body .admin-announcements-item-top {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 10px !important;
}

html body .admin-announcements-item h3 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 1000 !important;
    margin: 0 !important;
}

html body .admin-announcements-item span {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

html body .admin-announcements-item-top strong {
    border-radius: 999px !important;
    padding: 7px 13px !important;
    height: fit-content !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

html body .admin-announcements-item-top strong.active {
    background: #22c55e !important;
    color: #ffffff !important;
}

html body .admin-announcements-item-top strong.inactive {
    background: #6b7280 !important;
    color: #ffffff !important;
}

html body .admin-announcements-item p {
    color: #d1d5db !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
    margin: 0 0 14px 0 !important;
}

html body .admin-announcements-item-actions {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

html body .admin-announcements-item-actions button {
    border: none !important;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    transition: all 0.2s ease !important;
}

html body .admin-announcements-item-actions button:hover {
    transform: translateY(-2px) !important;
}

html body .admin-announcements-item-actions .edit {
    background: #ffffff !important;
    color: #111111 !important;
}

html body .admin-announcements-item-actions .toggle {
    background: #172033 !important;
    color: #ffffff !important;
}

html body .admin-announcements-item-actions .delete {
    background: #e11d2e !important;
    color: #ffffff !important;
}

html body .admin-announcements-success-message,
html body .admin-announcements-error-message {
    padding: 15px 18px !important;
    border-radius: 16px !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
}

html body .admin-announcements-success-message {
    background: #dcfce7 !important;
    color: #15803d !important;
    border: 1px solid #86efac !important;
}

html body .admin-announcements-error-message {
    background: #fee2e2 !important;
    color: #b91c1c !important;
    border: 1px solid #fca5a5 !important;
}

html body .admin-announcements-empty {
    min-height: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #ffffff !important;
}

html body .admin-announcements-empty i {
    font-size: 48px !important;
    color: #e11d2e !important;
    margin-bottom: 16px !important;
}

html body .admin-announcements-empty h3 {
    font-size: 24px !important;
    font-weight: 950 !important;
    margin: 0 0 8px 0 !important;
}

html body .admin-announcements-empty p {
    color: #9ca3af !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    margin: 0 !important;
}

html body .admin-announcements-access-card {
    background: linear-gradient(145deg, #060606, #111111) !important;
    border-radius: 26px !important;
    padding: 36px !important;
    color: #ffffff !important;
}

html body .admin-announcements-access-card a {
    color: #e11d2e !important;
    font-weight: 950 !important;
}

html body .admin-announcements-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.72) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

html body .admin-announcements-modal {
    width: min(460px, 100%) !important;
    background: linear-gradient(145deg, #060606, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 28px !important;
    padding: 30px !important;
    color: #ffffff !important;
    text-align: center !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45) !important;
}

html body .admin-announcements-modal-icon {
    width: 76px !important;
    height: 76px !important;
    border-radius: 24px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 36px !important;
    margin: 0 auto 16px auto !important;
}

html body .admin-announcements-modal h3 {
    font-size: 28px !important;
    font-weight: 1000 !important;
    margin: 0 0 10px 0 !important;
}

html body .admin-announcements-modal p {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
}

html body .admin-announcements-modal-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

html body .admin-announcements-modal-actions button {
    height: 52px !important;
    border: none !important;
    border-radius: 18px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
}

html body .admin-announcements-modal-actions .cancel {
    background: #ffffff !important;
    color: #111111 !important;
}

html body .admin-announcements-modal-actions .confirm {
    background: #e11d2e !important;
    color: #ffffff !important;
}

@media (max-width: 1200px) {
    html body .admin-announcements-layout {
        grid-template-columns: 1fr !important;
    }

    html body .admin-announcements-stats {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   GESTIONARE RAPIDĂ
========================= */
.admin-quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.quick-action-btn {
    border: none;
    border-radius: 22px;
    padding: 18px 16px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action-btn i {
    font-size: 1.7rem;
}

.quick-action-btn span {
    text-align: center;
    line-height: 1.2;
}

.quick-action-btn.primary {
    background: linear-gradient(135deg, #ff1737, #d90f2f);
    color: #fff;
    box-shadow: 0 16px 30px rgba(255, 23, 55, 0.22);
}

.quick-action-btn.light {
    background: #f7f7f7;
    color: #111;
}

.quick-action-btn.announcement {
    background: linear-gradient(135deg, #121826, #0f2247);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.quick-action-btn.span-2 {
    grid-column: span 2;
}

.quick-action-report-btn {
    width: 100%;
    margin-top: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-action-report-btn:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

/* =========================
   ANUNȚURI ACTIVE
========================= */
.admin-announcements-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 520px; /* ca să ocupe cam același spațiu */
}

.admin-announcements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
    overflow-y: auto;
    padding-right: 4px;
}

.admin-announcement-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-announcement-item:last-child {
    border-bottom: none;
}

.admin-announcement-badge {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1737, #c00f2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    box-shadow: 0 10px 24px rgba(255, 23, 55, 0.20);
}

.admin-announcement-content {
    flex: 1;
}

.admin-announcement-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 6px;
}

.admin-announcement-top h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

.admin-announcement-date {
    color: #aab2c5;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-announcement-content p {
    margin: 0 0 10px 0;
    color: #b7bfd1;
    line-height: 1.45;
    font-size: 1rem;
}

.admin-announcement-link {
    background: transparent;
    color: #ff1b3d;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

.admin-announcement-link:hover {
    text-decoration: underline;
}

.admin-announcements-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #b8c0d4;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
}

/* butonul mic din dreapta sus */
.admin-home-top-btn {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-home-top-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* ADMIN HOME - CREEAZĂ ANUNȚ */

html body .pg-action-btn.announcement {
    background: linear-gradient(145deg, #172033, #0f172a) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

html body .pg-action-btn.announcement i {
    color: #e11d2e !important;
}

html body .pg-action-btn.wide {
    grid-column: 1 / -1 !important;
    min-height: 64px !important;
    flex-direction: row !important;
}

/* ADMIN HOME - ANUNȚURI ACTIVE */

html body .pg-admin-announcements-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    max-height: 330px !important;
    overflow-y: auto !important;
    padding-right: 6px !important;
}

html body .pg-admin-announcement-row {
    display: grid !important;
    grid-template-columns: 54px 1fr !important;
    gap: 14px !important;
    align-items: start !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .pg-admin-announcement-row:last-child {
    border-bottom: none !important;
}

html body .pg-admin-announcement-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: rgba(225, 29, 46, 0.14) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}

html body .pg-admin-announcement-content {
    min-width: 0 !important;
}

html body .pg-admin-announcement-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 5px !important;
}

html body .pg-admin-announcement-top strong {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    line-height: 1.15 !important;
}

html body .pg-admin-announcement-top span {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

html body .pg-admin-announcement-content p {
    color: #d1d5db !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin: 0 0 6px 0 !important;
}

html body .pg-admin-announcement-content small {
    color: #e11d2e !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

/* scrollbar anunțuri */
html body .pg-admin-announcements-list::-webkit-scrollbar {
    width: 7px !important;
}

html body .pg-admin-announcements-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 999px !important;
}

html body .pg-admin-announcements-list::-webkit-scrollbar-thumb {
    background: #e11d2e !important;
    border-radius: 999px !important;
}

/* =========================================================
   FIX FINAL - ADMIN HOME PROGRAMĂRI DE AZI
   Folosește structura veche compactă
   ========================================================= */

html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll {
    height: 300px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

html body .pg-admin-panel .pg-appointment-row.compact {
    background: #ffffff !important;
    color: #111111 !important;
    min-height: 72px !important;
    height: 72px !important;
    padding: 10px 14px !important;
    border-radius: 18px !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) 120px !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 0 0 auto !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-time {
    color: #e11d2e !important;
    font-size: 20px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client {
    min-width: 0 !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client strong {
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 1000 !important;
    line-height: 1.05 !important;
    display: block !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client span {
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    display: block !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill {
    justify-self: end !important;
    min-width: 108px !important;
    text-align: center !important;
    padding: 9px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill.confirmata {
    background: #74d900 !important;
    color: #ffffff !important;
}

/* =========================================================
   ADMIN HOME - PROGRAMĂRI DE AZI FINAL CLEAN
   ========================================================= */

html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll {
    height: auto !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* Ascunde scrollbar când nu e nevoie */
html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar {
    width: 7px !important;
}

html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar-track {
    background: transparent !important;
}

html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
}

html body .pg-admin-panel .pg-appointment-row.compact {
    background: #ffffff !important;
    color: #111111 !important;
    min-height: 78px !important;
    height: auto !important;
    padding: 12px 16px !important;
    border-radius: 18px !important;
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) 132px !important;
    align-items: center !important;
    gap: 14px !important;
    flex: 0 0 auto !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-time {
    color: #e11d2e !important;
    font-size: 20px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    text-align: center !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client {
    min-width: 0 !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client strong {
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 1000 !important;
    line-height: 1.05 !important;
    display: block !important;
    max-width: 150px !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client span {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    display: block !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill {
    justify-self: end !important;
    min-width: 118px !important;
    text-align: center !important;
    padding: 10px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
}

html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill.confirmata {
    background: #74d900 !important;
    color: #ffffff !important;
}

/* =========================================================
   PLĂȚI + PREZENȚE ADMIN PAGES
   ========================================================= */

html body .plati-admin-page,
html body .prezente-admin-page {
    color: #ffffff !important;
}

html body .plati-admin-hero,
html body .prezente-admin-hero {
    background:
        radial-gradient(circle at 84% 38%, rgba(225, 29, 46, 0.30), transparent 28%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    border-radius: 30px !important;
    padding: 38px 42px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

html body .plati-admin-badge,
html body .prezente-admin-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 1000 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 14px !important;
}

html body .plati-admin-hero h1,
html body .prezente-admin-hero h1 {
    color: #ffffff !important;
    font-size: 52px !important;
    font-weight: 1000 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.05 !important;
}

html body .plati-admin-hero p,
html body .prezente-admin-hero p {
    color: #d1d5db !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

html body .plati-admin-hero-icon,
html body .prezente-admin-hero-icon {
    width: 96px !important;
    height: 96px !important;
    border-radius: 26px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 42px !important;
    box-shadow: 0 16px 34px rgba(225, 29, 46, 0.34) !important;
}

html body .plati-admin-stats-grid,
html body .prezente-admin-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin-bottom: 18px !important;
}

html body .plati-admin-stat-card,
html body .prezente-admin-stat-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .plati-admin-stat-icon,
html body .prezente-admin-stat-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 25px !important;
}

html body .plati-admin-stat-card span,
html body .prezente-admin-stat-card span {
    display: block !important;
    color: #cfd2d6 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    margin-bottom: 5px !important;
}

html body .plati-admin-stat-card strong,
html body .prezente-admin-stat-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 1000 !important;
    line-height: 1.05 !important;
}

html body .plati-admin-stat-card small,
html body .prezente-admin-stat-card small {
    display: block !important;
    color: #22c55e !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    margin-top: 5px !important;
}

html body .plati-admin-filter-card,
html body .prezente-admin-filter-card {
    background: linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 18px !important;
    margin-bottom: 18px !important;
    display: grid !important;
    grid-template-columns: 1fr 240px auto !important;
    gap: 14px !important;
    align-items: end !important;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .plati-admin-search-box,
html body .prezente-admin-search-box {
    height: 54px !important;
    background: #ffffff !important;
    border-radius: 17px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

html body .plati-admin-search-box i,
html body .prezente-admin-search-box i {
    color: #e11d2e !important;
    font-size: 20px !important;
}

html body .plati-admin-search-box input,
html body .prezente-admin-search-box input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    width: 100% !important;
    box-shadow: none !important;
}

html body .plati-admin-filter-group,
html body .prezente-admin-filter-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
}

html body .plati-admin-filter-group label,
html body .prezente-admin-filter-group label {
    color: #d1d5db !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

html body .plati-admin-filter-group select,
html body .prezente-admin-filter-group select {
    height: 54px !important;
    border: none !important;
    outline: none !important;
    border-radius: 17px !important;
    padding: 0 14px !important;
    color: #111111 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

html body .plati-admin-reset-btn,
html body .prezente-admin-reset-btn {
    height: 54px !important;
    border-radius: 17px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    padding: 0 18px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

html body .plati-admin-grid,
html body .prezente-admin-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

html body .plata-admin-card,
html body .prezenta-admin-card {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 34%),
        linear-gradient(145deg, #080808, #151515) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 26px !important;
    padding: 22px !important;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .plata-admin-card-header,
html body .prezenta-admin-card-header {
    display: grid !important;
    grid-template-columns: 58px 1fr auto !important;
    gap: 14px !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

html body .plata-admin-icon,
html body .prezenta-admin-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 25px !important;
}

html body .plata-admin-card h3,
html body .prezenta-admin-card h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 1000 !important;
    margin: 0 0 5px 0 !important;
}

html body .plata-admin-card-header span,
html body .prezenta-admin-card-header span {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

html body .plata-admin-suma {
    color: #22c55e !important;
    font-size: 18px !important;
    font-weight: 1000 !important;
    white-space: nowrap !important;
}

html body .prezenta-admin-status {
    background: #22c55e !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
    white-space: nowrap !important;
}

html body .plata-admin-info-list,
html body .prezenta-admin-info-list {
    display: grid !important;
    gap: 13px !important;
}

html body .plata-admin-info-row,
html body .prezenta-admin-info-row {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
}

html body .plata-admin-info-row i,
html body .prezenta-admin-info-row i {
    width: 36px !important;
    height: 36px !important;
    border-radius: 13px !important;
    background: rgba(225, 29, 46, 0.13) !important;
    color: #e11d2e !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 17px !important;
}

html body .plata-admin-info-row span,
html body .prezenta-admin-info-row span {
    display: block !important;
    color: #9ca3af !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    margin-bottom: 3px !important;
}

html body .plata-admin-info-row strong,
html body .prezenta-admin-info-row strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

html body .plati-admin-loading,
html body .plati-admin-empty,
html body .prezente-admin-loading,
html body .prezente-admin-empty {
    background: linear-gradient(145deg, #080808, #151515) !important;
    color: #d1d5db !important;
    border-radius: 22px !important;
    padding: 24px !important;
    font-weight: 900 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

html body .plati-admin-empty i,
html body .prezente-admin-empty i,
html body .plati-admin-loading i,
html body .prezente-admin-loading i {
    color: #e11d2e !important;
    font-size: 22px !important;
}

@media (max-width: 1350px) {
    html body .plati-admin-stats-grid,
    html body .prezente-admin-stats-grid {
        grid-template-columns: 1fr !important;
    }

    html body .plati-admin-filter-card,
    html body .prezente-admin-filter-card {
        grid-template-columns: 1fr !important;
    }

    html body .plati-admin-grid,
    html body .prezente-admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 800px) {
    html body .plati-admin-hero,
    html body .prezente-admin-hero {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    html body .plati-admin-hero h1,
    html body .prezente-admin-hero h1 {
        font-size: 38px !important;
    }

    html body .plati-admin-grid,
    html body .prezente-admin-grid {
        grid-template-columns: 1fr !important;
    }

    html body .plata-admin-card-header,
    html body .prezenta-admin-card-header {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   PROGRAMĂRI ADMIN - WEEKLY SCHEDULER ACTIV
   ========================================================= */

html body .programari-week-table-card {
    background: linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.25) !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20) !important;
    margin-bottom: 16px !important;
}

html body .programari-week-table {
    width: 100% !important;
    overflow-x: auto !important;
}

html body .programari-week-head,
html body .programari-week-row {
    display: grid !important;
    grid-template-columns: 86px repeat(6, minmax(160px, 1fr)) !important;
    min-width: 1120px !important;
}

html body .programari-week-time-head,
html body .programari-week-day-head,
html body .programari-week-time,
html body .programari-week-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .programari-week-time-head,
html body .programari-week-day-head {
    background: rgba(255, 255, 255, 0.035) !important;
    color: #ffffff !important;
    padding: 14px 10px !important;
    text-align: center !important;
    font-weight: 1000 !important;
}

html body .programari-week-day-head strong {
    display: block !important;
    text-transform: capitalize !important;
    font-size: 15px !important;
}

html body .programari-week-day-head span {
    display: block !important;
    color: #d1d5db !important;
    font-size: 12px !important;
    margin-top: 3px !important;
}

html body .programari-week-time {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 1000 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: 15px !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

html body .programari-week-cell {
    min-height: 92px !important;
    padding: 8px !important;
    background: rgba(255, 255, 255, 0.015) !important;
    cursor: pointer !important;
    transition: all 0.18s ease !important;
}

html body .programari-week-cell:hover {
    background: rgba(225, 29, 46, 0.08) !important;
}

html body .programari-slot-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 5px !important;
    min-height: 16px !important;
}

html body .programari-slot-top span {
    font-size: 12px !important;
    font-weight: 1000 !important;
}

html body .programari-slot-top small {
    font-size: 11px !important;
    font-weight: 950 !important;
}

html body .programari-week-cell.slot-empty .programari-slot-top span,
html body .programari-week-cell.slot-empty .programari-slot-top small {
    color: #9ca3af !important;
}

html body .programari-week-cell.slot-available .programari-slot-top span {
    color: #84cc16 !important;
}

html body .programari-week-cell.slot-warning .programari-slot-top span {
    color: #f59e0b !important;
}

html body .programari-week-cell.slot-full .programari-slot-top span,
html body .programari-week-cell.slot-full .programari-slot-top small {
    color: #ef4444 !important;
}

html body .programari-slot-item {
    height: 20px !important;
    border-radius: 6px !important;
    padding: 2px 6px !important;
    margin-bottom: 4px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    overflow: hidden !important;
}

html body .programari-slot-item span,
html body .programari-slot-item small {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

html body .programari-slot-item.status-confirmata {
    background: rgba(132, 204, 22, 0.16) !important;
    color: #d9f99d !important;
    border: 1px solid rgba(132, 204, 22, 0.35) !important;
}

html body .programari-slot-item.status-programata {
    background: rgba(245, 158, 11, 0.14) !important;
    color: #fde68a !important;
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
}

html body .programari-slot-item.status-anulata {
    background: rgba(239, 68, 68, 0.14) !important;
    color: #fecaca !important;
    border: 1px solid rgba(239, 68, 68, 0.35) !important;
}

html body .programari-slot-more {
    background: transparent !important;
    border: none !important;
    color: #e11d2e !important;
    padding: 0 !important;
    font-size: 11px !important;
    font-weight: 1000 !important;
}

html body .programari-week-bottom-bar {
    background: linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.20) !important;
    border-radius: 22px !important;
    padding: 16px 22px !important;
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    flex-wrap: wrap !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
}

html body .programari-week-bottom-bar div {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    font-size: 14px !important;
    font-weight: 850 !important;
}

html body .programari-week-bottom-bar strong {
    margin-left: 4px !important;
    font-weight: 1000 !important;
}

html body .programari-week-bottom-bar .dot {
    width: 13px !important;
    height: 13px !important;
    border-radius: 50% !important;
    display: inline-block !important;
}

html body .programari-week-bottom-bar .dot.confirmed {
    background: #84cc16 !important;
}

html body .programari-week-bottom-bar .dot.pending {
    background: #facc15 !important;
}

html body .programari-week-bottom-bar .dot.cancelled {
    background: #ef4444 !important;
}

html body .programari-week-bottom-bar .dot.total {
    background: #60a5fa !important;
}

html body .programari-export-week-btn {
    margin-left: auto !important;
    background: rgba(225, 29, 46, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(225, 29, 46, 0.45) !important;
    border-radius: 16px !important;
    padding: 12px 22px !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

html body .programari-slot-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.72) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

html body .programari-slot-modal {
    width: min(720px, 100%) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    background: linear-gradient(145deg, #070707, #141414) !important;
    color: #ffffff !important;
    border-radius: 26px !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    padding: 24px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.50) !important;
}

html body .programari-slot-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    align-items: flex-start !important;
    margin-bottom: 18px !important;
}

html body .programari-slot-modal-header h3 {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 1000 !important;
    margin: 0 0 4px 0 !important;
    text-transform: capitalize !important;
}

html body .programari-slot-modal-header p {
    color: #d1d5db !important;
    margin: 0 !important;
    font-weight: 800 !important;
}

html body .programari-slot-modal-header button {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: none !important;
}

html body .programari-slot-modal-list {
    display: grid !important;
    gap: 12px !important;
}

html body .programari-slot-modal-item {
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 14px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    align-items: center !important;
}

html body .programari-slot-modal-item strong,
html body .programari-slot-modal-item span,
html body .programari-slot-modal-item small {
    display: block !important;
}

html body .programari-slot-modal-item strong {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 1000 !important;
}

html body .programari-slot-modal-item span {
    color: #d1d5db !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-top: 4px !important;
}

html body .programari-slot-modal-item small {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    margin-top: 3px !important;
}

html body .programari-slot-modal-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 8px !important;
}

html body .programari-slot-modal-actions button {
    background: #ffffff !important;
    color: #111111 !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    font-weight: 1000 !important;
    white-space: nowrap !important;
}

html body .programari-slot-modal-actions button.confirm {
    background: #84cc16 !important;
    color: #ffffff !important;
}

html body .programari-slot-modal-actions button.cancel {
    background: #e11d2e !important;
    color: #ffffff !important;
}

html body .programari-slot-modal-empty {
    color: #d1d5db !important;
    font-weight: 850 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 16px !important;
    padding: 18px !important;
}

@media (max-width: 900px) {
    html body .programari-week-bottom-bar {
        gap: 14px !important;
    }

    html body .programari-export-week-btn {
        width: 100% !important;
        justify-content: center !important;
        margin-left: 0 !important;
    }

    html body .programari-slot-modal-item {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}

/* =========================================================
   PROGRAMĂRI ADMIN - SCHEDULER COMPACT FINAL
   ========================================================= */

html body .programari-week-table-card.compact-scheduler {
    border-radius: 24px !important;
    margin-top: 18px !important;
    margin-bottom: 14px !important;
}

html body .compact-scheduler .programari-week-head,
html body .compact-scheduler .programari-week-row {
    grid-template-columns: 74px repeat(6, minmax(140px, 1fr)) !important;
    min-width: 1000px !important;
}

html body .compact-scheduler .programari-week-time-head,
html body .compact-scheduler .programari-week-day-head {
    padding: 10px 8px !important;
}

html body .compact-scheduler .programari-week-day-head strong {
    font-size: 14px !important;
    line-height: 1.05 !important;
}

html body .compact-scheduler .programari-week-day-head span {
    font-size: 11px !important;
    margin-top: 2px !important;
}

html body .compact-scheduler .programari-week-time {
    font-size: 16px !important;
    padding-top: 12px !important;
}

html body .compact-scheduler .programari-week-cell {
    min-height: 68px !important;
    height: 68px !important;
    padding: 5px 7px !important;
    overflow: hidden !important;
}

html body .compact-scheduler .programari-slot-top {
    margin-bottom: 3px !important;
    min-height: 13px !important;
    line-height: 1 !important;
}

html body .compact-scheduler .programari-slot-top span {
    font-size: 10px !important;
    line-height: 1 !important;
}

html body .compact-scheduler .programari-slot-top small {
    font-size: 10px !important;
    line-height: 1 !important;
}

html body .compact-scheduler .programari-slot-item {
    height: 17px !important;
    min-height: 17px !important;
    border-radius: 5px !important;
    padding: 1px 5px !important;
    margin-bottom: 3px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    gap: 4px !important;
}

html body .compact-scheduler .programari-slot-item span {
    max-width: 70px !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

html body .compact-scheduler .programari-slot-item small {
    max-width: 58px !important;
    font-size: 9px !important;
    line-height: 1 !important;
    opacity: 0.9 !important;
}

html body .compact-scheduler .programari-slot-more {
    font-size: 10px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}

/* Celulele libere să pară mai curate */
html body .compact-scheduler .programari-week-cell.slot-empty {
    background: rgba(255, 255, 255, 0.008) !important;
}

html body .compact-scheduler .programari-week-cell.slot-empty:hover {
    background: rgba(225, 29, 46, 0.045) !important;
}

/* Celulele ocupate să fie ușor evidențiate */
html body .compact-scheduler .programari-week-cell.slot-available {
    background: rgba(132, 204, 22, 0.025) !important;
}

html body .compact-scheduler .programari-week-cell.slot-warning {
    background: rgba(245, 158, 11, 0.035) !important;
}

html body .compact-scheduler .programari-week-cell.slot-full {
    background: rgba(239, 68, 68, 0.035) !important;
}

/* Bară jos compactă */
html body .programari-week-bottom-bar {
    padding: 13px 18px !important;
    gap: 22px !important;
    border-radius: 20px !important;
}

html body .programari-week-bottom-bar div {
    font-size: 13px !important;
}

html body .programari-week-bottom-bar .dot {
    width: 11px !important;
    height: 11px !important;
}

html body .programari-export-week-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
}

/* Responsive */
@media (max-width: 1200px) {
    html body .compact-scheduler .programari-week-head,
    html body .compact-scheduler .programari-week-row {
        grid-template-columns: 68px repeat(6, minmax(130px, 1fr)) !important;
        min-width: 900px !important;
    }

    html body .compact-scheduler .programari-week-cell {
        min-height: 64px !important;
        height: 64px !important;
    }

    html body .compact-scheduler .programari-slot-item {
        height: 16px !important;
        min-height: 16px !important;
        font-size: 9px !important;
    }
}

html body .programari-training-modal-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.72) !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

html body .programari-training-modal {
    width: min(520px, 100%) !important;
    background: linear-gradient(145deg, #070707, #141414) !important;
    color: #ffffff !important;
    border-radius: 26px !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    padding: 24px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55) !important;
}

html body .programari-training-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    align-items: flex-start !important;
    margin-bottom: 18px !important;
}

html body .programari-training-modal-header h3 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 1000 !important;
    margin: 0 0 6px 0 !important;
}

html body .programari-training-modal-header p {
    color: #d1d5db !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

html body .programari-training-modal-header button {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: none !important;
}

html body .programari-training-select {
    width: 100% !important;
    height: 54px !important;
    border-radius: 16px !important;
    border: none !important;
    outline: none !important;
    background: #ffffff !important;
    color: #111111 !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    font-weight: 850 !important;
}

html body .programari-training-hint {
    color: #fca5a5 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    margin: 10px 0 0 0 !important;
}

html body .programari-training-modal-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 20px !important;
}

html body .programari-training-modal-actions button {
    height: 50px !important;
    border-radius: 16px !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
}

html body .programari-training-modal-actions .secondary {
    background: #ffffff !important;
    color: #111111 !important;
}

html body .programari-training-modal-actions .primary {
    background: #84cc16 !important;
    color: #ffffff !important;
}

html body .programari-training-modal-actions .primary:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
}

/* =========================================================
   FIX TEXT VIZIBIL ÎN CELULE PROGRAMĂRI
   ========================================================= */

html body .compact-scheduler .programari-week-cell {
    min-height: 76px !important;
    height: 76px !important;
    padding: 6px 8px !important;
}

html body .compact-scheduler .programari-slot-item {
    height: 20px !important;
    min-height: 20px !important;
    padding: 2px 6px !important;
    margin-bottom: 4px !important;
    opacity: 1 !important;
}

html body .compact-scheduler .programari-slot-item span {
    color: inherit !important;
    font-size: 10px !important;
    font-weight: 1000 !important;
    line-height: 1.1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: 75px !important;
}

html body .compact-scheduler .programari-slot-item small {
    color: inherit !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    opacity: 0.95 !important;
    visibility: visible !important;
    max-width: 70px !important;
}

html body .compact-scheduler .programari-slot-item.status-confirmata {
    background: rgba(132, 204, 22, 0.22) !important;
    color: #d9f99d !important;
    border: 1px solid rgba(132, 204, 22, 0.55) !important;
}

html body .compact-scheduler .programari-slot-item.status-programata {
    background: rgba(245, 158, 11, 0.22) !important;
    color: #fde68a !important;
    border: 1px solid rgba(245, 158, 11, 0.55) !important;
}

html body .compact-scheduler .programari-slot-item.status-anulata {
    background: rgba(239, 68, 68, 0.22) !important;
    color: #fecaca !important;
    border: 1px solid rgba(239, 68, 68, 0.55) !important;
}

/* =========================================================
   CLIENT HOME - HERO COMPACT CA ADMIN
   ========================================================= */

html body .client-home-hero-new {
    min-height: 260px !important;
    background:
        radial-gradient(circle at 82% 45%, rgba(225, 29, 46, 0.28), transparent 34%),
        linear-gradient(145deg, #050505, #141414) !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
    border-radius: 30px !important;
    padding: 36px 42px !important;
    margin-bottom: 24px !important;
    display: grid !important;
    grid-template-columns: 1fr 0.95fr !important;
    align-items: center !important;
    gap: 32px !important;
    overflow: hidden !important;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

html body .client-home-hero-content h1 {
    color: #ffffff !important;
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: 0.5px !important;
}

html body .client-home-hero-content h1 span {
    color: #e11d2e !important;
}

html body .client-home-hero-content p {
    color: #d1d5db !important;
    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 750 !important;
    margin: 0 0 22px 0 !important;
    max-width: 620px !important;
}

html body .client-home-hero-message {
    width: fit-content !important;
    max-width: 620px !important;
    min-height: 58px !important;
    padding: 0 22px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 16px !important;
    font-weight: 850 !important;
}

html body .client-home-hero-message i {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    background: #e11d2e !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
}

html body .client-home-hero-image {
    height: 190px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    border: 1px solid rgba(225, 29, 46, 0.32) !important;
    box-shadow: 0 18px 38px rgba(225, 29, 46, 0.14) !important;
}

html body .client-home-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: brightness(0.82) contrast(1.08) !important;
}

@media (max-width: 1000px) {
    html body .client-home-hero-new {
        grid-template-columns: 1fr !important;
        padding: 30px !important;
    }

    html body .client-home-hero-image {
        height: 180px !important;
    }

    html body .client-home-hero-content h1 {
        font-size: 38px !important;
    }
}

/* CLIENT HOME - HERO MAI COMPACT */

html body .client-home-hero-new {
    min-height: 210px !important;
    padding: 26px 36px !important;
    margin-bottom: 20px !important;
    gap: 28px !important;
}

html body .client-home-hero-content h1 {
    font-size: clamp(34px, 3.2vw, 48px) !important;
    line-height: 1.05 !important;
    margin-bottom: 10px !important;
}

html body .client-home-hero-content p {
    font-size: 16px !important;
    margin-bottom: 16px !important;
}

html body .client-home-hero-message {
    min-height: 50px !important;
    padding: 0 18px !important;
    border-radius: 16px !important;
    font-size: 15px !important;
}

html body .client-home-hero-message i {
    width: 34px !important;
    height: 34px !important;
    font-size: 16px !important;
}

html body .client-home-hero-image {
    height: 160px !important;
    border-radius: 22px !important;
}

html body .notification-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    background: #e11d2e !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* =========================================================
   FIX FINAL - ADMIN ACTION STRIP COMPACT CA ÎN MODEL
   ========================================================= */

html body .admin-actions-strip-v2 {
    display: grid !important;
    grid-template-columns: 1.35fr 1.35fr 0.82fr 0.82fr 0.82fr !important;
    gap: 14px !important;
    align-items: stretch !important;
    margin: 18px 0 18px 0 !important;
    width: 100% !important;
}

html body .admin-strip-card-v2 {
    position: relative !important;
    border-radius: 18px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* PRIMELE 2 BUTOANE PRINCIPALE */
html body .admin-strip-card-v2.wide {
    min-height: 118px !important;
    height: 118px !important;
    padding: 14px 16px !important;
    display: grid !important;
    grid-template-columns: 82px 1fr 36px !important;
    align-items: center !important;
    gap: 14px !important;
}

/* ULTIMELE 3 BUTOANE MICI */
html body .admin-strip-card-v2.small {
    min-height: 118px !important;
    height: 118px !important;
    padding: 14px 14px !important;
    display: grid !important;
    grid-template-rows: 42px 1fr 28px !important;
    align-items: start !important;
    justify-content: stretch !important;
}

/* FUNDALURI */
html body .admin-strip-card-v2.primary {
    background: linear-gradient(135deg, #e90d2e 0%, #c8102a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.28) !important;
}

html body .admin-strip-card-v2.light {
    background: #f4f4f5 !important;
    color: #111111 !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10) !important;
}

html body .admin-strip-card-v2.blue {
    background: linear-gradient(135deg, #0b1f50 0%, #0e2a68 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(8, 25, 72, 0.22) !important;
}

html body .admin-strip-card-v2.dark {
    background: linear-gradient(135deg, #060606 0%, #111216 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22) !important;
}

/* ICONIȚE */
html body .admin-strip-icon-v2 {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

html body .admin-strip-card-v2.wide .admin-strip-icon-v2 {
    width: 72px !important;
    height: 72px !important;
    border-radius: 20px !important;
    font-size: 30px !important;
}

html body .admin-strip-card-v2.small .admin-strip-icon-v2 {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
    font-size: 22px !important;
}

html body .admin-strip-card-v2.primary .admin-strip-icon-v2 {
    background: rgba(255, 255, 255, 0.13) !important;
    color: #ffffff !important;
}

html body .admin-strip-card-v2.light .admin-strip-icon-v2 {
    background: rgba(225, 29, 46, 0.10) !important;
    color: #e11d2e !important;
}

html body .admin-strip-card-v2.blue .admin-strip-icon-v2 {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e11d2e !important;
}

html body .admin-strip-card-v2.dark .admin-strip-icon-v2 {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

/* TEXT */
html body .admin-strip-text-v2 {
    min-width: 0 !important;
    width: 100% !important;
}

html body .admin-strip-text-v2 h4 {
    margin: 0 0 5px 0 !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.2px !important;
}

html body .admin-strip-text-v2 p {
    margin: 0 !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

html body .admin-strip-card-v2.wide .admin-strip-text-v2 h4 {
    font-size: 20px !important;
    color: #ffffff !important;
    white-space: nowrap !important;
}

html body .admin-strip-card-v2.wide .admin-strip-text-v2 p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.90) !important;
    max-width: 190px !important;
}

html body .admin-strip-card-v2.small .admin-strip-text-v2 h4 {
    font-size: 14px !important;
    line-height: 1.15 !important;
    max-width: 105px !important;
}

html body .admin-strip-card-v2.light .admin-strip-text-v2 h4 {
    color: #111111 !important;
}

html body .admin-strip-card-v2.blue .admin-strip-text-v2 h4,
html body .admin-strip-card-v2.dark .admin-strip-text-v2 h4 {
    color: #ffffff !important;
}

/* SĂGEATĂ */
html body .admin-strip-arrow-v2 {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .admin-strip-card-v2.wide .admin-strip-arrow-v2 {
    position: static !important;
    align-self: center !important;
    justify-self: end !important;
}

html body .admin-strip-card-v2.small .admin-strip-arrow-v2 {
    position: static !important;
    justify-self: end !important;
    align-self: end !important;
}

html body .admin-strip-card-v2.primary .admin-strip-arrow-v2 {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
}

html body .admin-strip-card-v2.light .admin-strip-arrow-v2 {
    background: rgba(0, 0, 0, 0.06) !important;
    color: #111111 !important;
}

html body .admin-strip-card-v2.blue .admin-strip-arrow-v2,
html body .admin-strip-card-v2.dark .admin-strip-arrow-v2 {
    background: rgba(255, 255, 255, 0.09) !important;
    color: #ffffff !important;
}

/* HOVER */
html body .admin-strip-card-v2:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.03) !important;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    html body .admin-actions-strip-v2 {
        grid-template-columns: 1fr 1fr 0.8fr 0.8fr 0.8fr !important;
    }

    html body .admin-strip-card-v2.wide .admin-strip-text-v2 h4 {
        font-size: 18px !important;
    }

    html body .admin-strip-card-v2.wide .admin-strip-text-v2 p {
        font-size: 12px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 1100px) {
    html body .admin-actions-strip-v2 {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 750px) {
    html body .admin-actions-strip-v2 {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   ADMIN HOME - ACTION STRIP FINAL
   ========================================================= */

html body .admin-actions-strip-final {
    display: grid !important;
    grid-template-columns: 1.55fr 1.55fr 1fr 1fr 1fr !important;
    gap: 16px !important;
    margin: 22px 0 18px 0 !important;
    width: 100% !important;
    align-items: stretch !important;
}

html body .admin-action-final {
    position: relative !important;
    display: block !important;
    text-decoration: none !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    transition: all 0.22s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .admin-action-final:hover {
    transform: translateY(-2px) !important;
}

/* primele 2 principale */
html body .admin-action-final.wide {
    min-height: 138px !important;
    height: 138px !important;
    padding: 20px 22px !important;
    display: grid !important;
    grid-template-columns: 84px 1fr 44px !important;
    align-items: center !important;
    gap: 18px !important;
}

/* ultimele 3 mici */
html body .admin-action-final.small {
    min-height: 138px !important;
    height: 138px !important;
    padding: 18px 18px !important;
    display: grid !important;
    grid-template-rows: 52px 1fr 34px !important;
    align-items: start !important;
}

/* culori */
html body .admin-action-final.primary {
    background: linear-gradient(135deg, #ff1338 0%, #df0a2d 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(225, 29, 46, 0.28) !important;
}

html body .admin-action-final.light {
    background: #f3f3f4 !important;
    color: #111111 !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
}

html body .admin-action-final.blue {
    background: linear-gradient(135deg, #0f225b 0%, #123073 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(12, 33, 82, 0.20) !important;
}

html body .admin-action-final.dark {
    background: linear-gradient(135deg, #050505 0%, #111216 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

/* icon */
html body .admin-action-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

html body .admin-action-final.wide .admin-action-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    font-size: 34px !important;
}

html body .admin-action-final.small .admin-action-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    font-size: 28px !important;
}

html body .admin-action-final.primary .admin-action-icon {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

html body .admin-action-final.light .admin-action-icon {
    background: rgba(225, 29, 46, 0.10) !important;
    color: #e11d2e !important;
}

html body .admin-action-final.blue .admin-action-icon {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ff3150 !important;
}

html body .admin-action-final.dark .admin-action-icon {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* text */
html body .admin-action-content {
    min-width: 0 !important;
}

html body .admin-action-content h4 {
    margin: 0 !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.2px !important;
}

html body .admin-action-content p {
    margin: 8px 0 0 0 !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
}

html body .admin-action-final.wide .admin-action-content h4 {
    font-size: 22px !important;
    color: #ffffff !important;
}

html body .admin-action-final.wide .admin-action-content p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.93) !important;
    max-width: 220px !important;
}

html body .admin-action-final.small .admin-action-content h4 {
    font-size: 15px !important;
    line-height: 1.15 !important;
    max-width: 125px !important;
}

html body .admin-action-final.light .admin-action-content h4 {
    color: #111111 !important;
}

html body .admin-action-final.blue .admin-action-content h4,
html body .admin-action-final.dark .admin-action-content h4 {
    color: #ffffff !important;
}

/* arrow */
html body .admin-action-arrow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
}

html body .admin-action-final.wide .admin-action-arrow {
    justify-self: end !important;
    align-self: center !important;
}

html body .admin-action-final.small .admin-action-arrow {
    justify-self: end !important;
    align-self: end !important;
}

html body .admin-action-final.primary .admin-action-arrow {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
}

html body .admin-action-final.light .admin-action-arrow {
    background: rgba(0, 0, 0, 0.06) !important;
    color: #111111 !important;
}

html body .admin-action-final.blue .admin-action-arrow,
html body .admin-action-final.dark .admin-action-arrow {
    background: rgba(255, 255, 255, 0.09) !important;
    color: #ffffff !important;
}

/* cele 2 panouri de dedesubt */
html body .admin-home-panels-two {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    margin-top: 12px !important;
}

@media (max-width: 1300px) {
    html body .admin-actions-strip-final {
        grid-template-columns: 1fr 1fr 0.9fr 0.9fr 0.9fr !important;
    }

    html body .admin-action-final.wide .admin-action-content h4 {
        font-size: 20px !important;
    }

    html body .admin-action-final.wide .admin-action-content p {
        font-size: 13px !important;
        max-width: 180px !important;
    }
}

@media (max-width: 1100px) {
    html body .admin-actions-strip-final {
        grid-template-columns: 1fr 1fr !important;
    }

    html body .admin-home-panels-two {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 700px) {
    html body .admin-actions-strip-final {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   FINAL OVERRIDE - ADMIN ACTION STRIP CA ÎN MODEL
   ========================================================= */

html body .admin-actions-strip-final {
    display: grid !important;
    grid-template-columns: 1.55fr 1.55fr 0.72fr 0.72fr 0.78fr !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 18px 0 20px 0 !important;
    align-items: stretch !important;
}

html body .admin-action-final {
    box-sizing: border-box !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    overflow: hidden !important;
    position: relative !important;
}

/* primele 2 carduri roșii */
html body .admin-action-final.wide {
    height: 112px !important;
    min-height: 112px !important;
    padding: 14px 14px !important;
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) 34px !important;
    align-items: center !important;
    gap: 14px !important;
}

/* ultimele 3 carduri mici */
html body .admin-action-final.small {
    height: 112px !important;
    min-height: 112px !important;
    padding: 12px 14px !important;
    display: grid !important;
    grid-template-rows: 38px 1fr 28px !important;
    align-items: start !important;
}

/* fundaluri */
html body .admin-action-final.primary {
    background: linear-gradient(135deg, #ff123a 0%, #c90c28 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(225, 29, 46, 0.30) !important;
}

html body .admin-action-final.light {
    background: #f4f4f5 !important;
    color: #111111 !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10) !important;
}

html body .admin-action-final.blue {
    background: linear-gradient(135deg, #0c2259 0%, #0b1b42 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(12, 34, 89, 0.22) !important;
}

html body .admin-action-final.dark {
    background: linear-gradient(135deg, #070707 0%, #111111 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.20) !important;
}

/* iconițe */
html body .admin-action-icon {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .admin-action-final.wide .admin-action-icon {
    width: 66px !important;
    height: 66px !important;
    border-radius: 18px !important;
    font-size: 30px !important;
}

html body .admin-action-final.small .admin-action-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
}

html body .admin-action-final.primary .admin-action-icon {
    background: rgba(255, 255, 255, 0.13) !important;
    color: #ffffff !important;
}

html body .admin-action-final.light .admin-action-icon {
    background: rgba(225, 29, 46, 0.10) !important;
    color: #e11d2e !important;
}

html body .admin-action-final.blue .admin-action-icon {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e11d2e !important;
}

html body .admin-action-final.dark .admin-action-icon {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

/* text */
html body .admin-action-content {
    min-width: 0 !important;
    overflow: hidden !important;
}

html body .admin-action-content h4 {
    margin: 0 !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
}

html body .admin-action-content p {
    margin: 6px 0 0 0 !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

html body .admin-action-final.wide .admin-action-content h4 {
    font-size: 17px !important;
    color: #ffffff !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.1 !important;
}

html body .admin-action-final.wide .admin-action-content p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 180px !important;
}

html body .admin-action-final.small .admin-action-content h4 {
    font-size: 13px !important;
    line-height: 1.15 !important;
    max-width: 95px !important;
}

html body .admin-action-final.light .admin-action-content h4 {
    color: #111111 !important;
}

html body .admin-action-final.blue .admin-action-content h4,
html body .admin-action-final.dark .admin-action-content h4 {
    color: #ffffff !important;
}

/* săgeți */
html body .admin-action-arrow {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    border-radius: 50% !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .admin-action-final.wide .admin-action-arrow {
    justify-self: end !important;
    align-self: center !important;
}

html body .admin-action-final.small .admin-action-arrow {
    justify-self: end !important;
    align-self: end !important;
}

html body .admin-action-final.primary .admin-action-arrow {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

html body .admin-action-final.light .admin-action-arrow {
    background: rgba(0, 0, 0, 0.06) !important;
    color: #111111 !important;
}

html body .admin-action-final.blue .admin-action-arrow,
html body .admin-action-final.dark .admin-action-arrow {
    background: rgba(255, 255, 255, 0.09) !important;
    color: #ffffff !important;
}

/* panourile de jos */
html body .admin-home-panels-two {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin-top: 0 !important;
}

/* responsive */
@media (max-width: 1300px) {
    html body .admin-actions-strip-final {
        grid-template-columns: 1fr 1fr 0.8fr 0.8fr 0.8fr !important;
    }

    html body .admin-action-final.wide .admin-action-content h4 {
        font-size: 0.98rem;
    }

    html body .admin-action-final.wide .admin-action-content p {
        font-size: 11px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 1000px) {
    html body .admin-actions-strip-final,
    html body .admin-home-panels-two {
        grid-template-columns: 1fr !important;
    }

    html body .admin-action-final.wide,
    html body .admin-action-final.small {
        height: auto !important;
        min-height: 100px !important;
    }
}

/* ALINIERE HOME ADMIN - PROGRAMĂRI + ANUNȚURI */
html body .admin-home-panels-two {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin-top: 14px !important;
    align-items: stretch !important;
}

html body .admin-home-panels-two .pg-admin-panel {
    width: 100% !important;
    min-height: 245px !important;
    box-sizing: border-box !important;
}

/* anulăm vechiul grid cu 3 coloane */
html body .pg-admin-main-grid {
    grid-template-columns: 1fr 1fr !important;
}

@media (max-width: 1000px) {
    html body .admin-home-panels-two {
        grid-template-columns: 1fr !important;
    }
}

/* SPAȚIU ÎNTRE PANOURILE HOME ADMIN */

html body .admin-home-panels-two {
    margin-bottom: 24px !important;
}

html body .pg-admin-bottom-grid {
    margin-top: 24px !important;
}

/* =========================================================
   CLIENT TOPBAR - VARIANTA FINALĂ HARD RESET
   ========================================================= */

html body .client-topbar-final {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: linear-gradient(145deg, #050505, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;

    padding: 18px 28px !important;
    margin: 0 0 22px 0 !important;
    box-sizing: border-box !important;
    min-height: 88px !important;
    overflow: hidden !important;
}

html body .client-topbar-final-left {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    min-width: 0 !important;
}

html body .client-topbar-final-menu {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    border-radius: 18px !important;
    background: rgba(225, 29, 46, 0.14) !important;
    color: #ff1f3d !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 24px !important;
    line-height: 1 !important;
}

html body .client-topbar-final-left h2 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

html body .client-topbar-final-user {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;

    background: linear-gradient(145deg, #111111, #1a1a1a) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 999px !important;

    padding: 12px 18px !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

html body .client-topbar-final-dot {
    width: 9px !important;
    height: 9px !important;
    min-width: 9px !important;
    min-height: 9px !important;
    border-radius: 50% !important;
    background: #ff1f3d !important;
    box-shadow: 0 0 10px rgba(255, 31, 61, 0.65) !important;
}

html body .client-topbar-final-text {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

html body .client-topbar-final-text strong {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

html body .client-topbar-final-role {
    color: #ff1f3d !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
}

/* responsive */
@media (max-width: 900px) {
    html body .client-topbar-final {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 18px 20px !important;
    }

    html body .client-topbar-final-left h2 {
        font-size: 24px !important;
    }

    html body .client-topbar-final-user {
        white-space: normal !important;
        flex-wrap: wrap !important;
    }
}

/* FIX FINAL - SĂGEATĂ URMĂTOAREA PLATĂ CA CELELALTE */

html body .client-home-kpi-card {
    position: relative !important;
    overflow: hidden !important;
    padding-right: 76px !important;
}

html body .client-kpi-arrow-circle {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;

    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 22px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
}

html body .client-kpi-arrow-circle i {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

/* CLIENT HOME - CATEGORIE ANUNȚ FĂRĂ BUTON */
html body .client-home-news-category {
    display: inline-block !important;
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    margin-top: 6px !important;
}

/* =========================================================
   CLIENT - ABONAMENTUL MEU V2
   ========================================================= */

html body .client-subscription-page-v2 {
    color: #ffffff !important;
}

html body .client-subscription-hero-v2 {
    background:
        radial-gradient(circle at 88% 45%, rgba(225, 29, 46, 0.34), transparent 28%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    border-radius: 30px !important;
    padding: 38px 46px !important;
    margin-bottom: 24px !important;
    min-height: 175px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20) !important;
}

html body .client-subscription-badge-v2 {
    color: #e11d2e !important;
    font-size: 14px !important;
    font-weight: 1000 !important;
    letter-spacing: 3px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
}

html body .client-subscription-hero-v2 h1 {
    color: #ffffff !important;
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 12px 0 !important;
}

html body .client-subscription-hero-v2 p {
    color: #d1d5db !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

html body .client-subscription-hero-icon-v2 {
    width: 110px !important;
    height: 110px !important;
    border-radius: 28px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    box-shadow: 0 18px 38px rgba(225, 29, 46, 0.30) !important;
}

html body .client-subscription-card-v2 {
    background:
        radial-gradient(circle at 0% 0%, rgba(225, 29, 46, 0.22), transparent 28%),
        linear-gradient(145deg, #07101c, #050505) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;
    padding: 34px 42px !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22) !important;
}

html body .client-subscription-card-top-v2 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 34px !important;
}

html body .client-subscription-plan-title-v2 {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

/* ICON ABONAMENT - DOAR ÎN PAGINA ABONAMENTUL MEU */
html body .client-subscription-page-v2 .client-subscription-plan-icon-v2 {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(180deg, #d88700 0%, #ef9700 100%) !important;
    box-shadow: 0 10px 24px rgba(216, 136, 0, 0.28) !important;
    flex-shrink: 0 !important;
}

html body .client-subscription-page-v2 .client-subscription-plan-icon-v2 i {
    font-size: 34px !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

html body .client-subscription-plan-title-v2 h2 {
    color: #ffffff !important;
    font-size: 38px !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 8px 0 10px 0 !important;
}

html body .client-subscription-plan-title-v2 p {
    color: #d1d5db !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

html body .client-subscription-status-v2 {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 13px 25px !important;
    font-size: 16px !important;
    font-weight: 1000 !important;
    box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28) !important;
}

html body .client-subscription-info-grid-v2 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 28px 0 !important;
    margin-bottom: 30px !important;
}

html body .client-subscription-info-item-v2 {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 24px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body .client-subscription-info-item-v2:first-child {
    padding-left: 0 !important;
}

html body .client-subscription-info-item-v2:last-child {
    border-right: none !important;
}

html body .client-subscription-info-icon-v2 {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    border-radius: 16px !important;
    background: rgba(225, 29, 46, 0.12) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
}

html body .client-subscription-info-item-v2 span {
    display: block !important;
    color: #9ca3af !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

html body .client-subscription-info-item-v2 strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 1000 !important;
    line-height: 1.1 !important;
}

html body .client-subscription-progress-area-v2 {
    margin-top: 8px !important;
}

html body .client-subscription-progress-head-v2 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

html body .client-subscription-progress-head-v2 span {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 850 !important;
}

html body .client-subscription-progress-head-v2 strong {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 950 !important;
}

html body .client-subscription-progress-head-v2 b {
    color: #e11d2e !important;
    font-size: 34px !important;
    font-weight: 1000 !important;
}

html body .client-subscription-progress-v2 {
    width: 100% !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.10) !important;
    overflow: hidden !important;
}

html body .client-subscription-progress-v2 div {
    height: 100% !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #ff183d, #c8102a) !important;
}

html body .client-subscription-progress-dates-v2 {
    display: flex !important;
    justify-content: space-between !important;
    margin-top: 16px !important;
}

html body .client-subscription-progress-dates-v2 span {
    color: #9ca3af !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

html body .client-subscription-empty-v2 {
    background: linear-gradient(145deg, #070707, #111111) !important;
    border-radius: 28px !important;
    padding: 42px !important;
    text-align: center !important;
    color: #ffffff !important;
}

html body .client-subscription-empty-v2 i {
    color: #e11d2e !important;
    font-size: 54px !important;
    margin-bottom: 16px !important;
}

html body .client-subscription-empty-v2 h2 {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 1000 !important;
}

html body .client-subscription-empty-v2 p {
    color: #d1d5db !important;
    font-size: 17px !important;
}

@media (max-width: 1200px) {
    html body .client-subscription-info-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    html body .client-subscription-info-item-v2 {
        border-right: none !important;
        padding: 0 !important;
    }
}

@media (max-width: 800px) {
    html body .client-subscription-hero-v2,
    html body .client-subscription-card-top-v2 {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    html body .client-subscription-info-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    html body .client-subscription-plan-title-v2 {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    html body .client-subscription-progress-head-v2 {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

/* FIX CARD TIP ABONAMENT - HOME CLIENT */
html body .client-home-kpi-card {
    display: grid !important;
    grid-template-columns: 74px minmax(0, 1fr) 44px !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 26px 22px !important;
    overflow: hidden !important;
}

html body .client-home-kpi-card .client-home-kpi-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

html body .client-home-kpi-card .client-home-kpi-content {
    min-width: 0 !important;
    overflow: hidden !important;
}

html body .client-home-kpi-card .client-home-kpi-content span,
html body .client-home-kpi-card .client-home-kpi-content small {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

html body .client-home-kpi-card .client-home-kpi-content strong,
html body .client-home-kpi-card .client-home-kpi-content h3 {
    display: block !important;
    max-width: 100% !important;
    font-size: 26px !important;
    line-height: 1.05 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

/* =========================================================
   FIX FINAL PUTERNIC - CARDURI CLIENT KPI
   Următoarea plată + Tip abonament
   ========================================================= */

html body a.client-kpi-fixed-card,
html body .client-kpi-fixed-card {
    width: 100% !important;
    height: 150px !important;
    min-height: 150px !important;
    max-height: 150px !important;

    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    gap: 20px !important;

    padding: 24px 22px 24px 26px !important;
    box-sizing: border-box !important;

    background: linear-gradient(145deg, #050505 0%, #0c0c0c 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 28px !important;

    color: #ffffff !important;
    text-decoration: none !important;

    overflow: hidden !important;
    position: relative !important;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

/* Anulează comportamente vechi dacă există pe același card */
html body a.client-kpi-fixed-card *,
html body .client-kpi-fixed-card * {
    box-sizing: border-box !important;
}

/* Icon stânga */
html body .client-kpi-fixed-card .client-kpi-fixed-icon {
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    max-width: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;

    border-radius: 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;
    overflow: hidden !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-icon.red {
    background: linear-gradient(145deg, #e11d2e 0%, #c8102a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.25) !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-icon.orange {
    background: linear-gradient(145deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.24) !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-icon i {
    color: #ffffff !important;
    font-size: 32px !important;
    line-height: 1 !important;
    display: block !important;
}

/* Conținut centru */
html body .client-kpi-fixed-card .client-kpi-fixed-content {
    min-width: 0 !important;
    max-width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    overflow: hidden !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-content span {
    display: block !important;

    color: #cbd5e1 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;

    margin: 0 0 8px 0 !important;

    max-width: 100% !important;
    white-space: normal !important;
    overflow: hidden !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-content strong {
    display: block !important;

    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 1000 !important;
    line-height: 1.02 !important;
    letter-spacing: 0.5px !important;

    margin: 0 0 8px 0 !important;

    max-width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    word-break: normal !important;
    overflow-wrap: normal !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-content small {
    display: block !important;

    color: #9ca3af !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;

    margin: 0 !important;

    max-width: 100% !important;
    white-space: normal !important;
    overflow: hidden !important;
}

/* Săgeată dreapta */
html body .client-kpi-fixed-card .client-kpi-fixed-arrow {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    justify-self: end !important;
    align-self: center !important;

    color: #ffffff !important;
    flex-shrink: 0 !important;

    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

html body .client-kpi-fixed-card .client-kpi-fixed-arrow i {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: block !important;
}

/* Hover */
html body a.client-kpi-fixed-card:hover {
    transform: translateY(-2px) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* În cazul în care cardurile sunt într-un grid vechi */
html body .client-home-kpi-grid,
html body .client-home-stats-grid,
html body .client-dashboard-kpi-grid {
    align-items: stretch !important;
}

/* Neutralizează clasele vechi DOAR dacă sunt în interiorul noului card */
html body .client-kpi-fixed-card .client-home-kpi-arrow,
html body .client-kpi-fixed-card .client-kpi-arrow-inside,
html body .client-kpi-fixed-card .client-kpi-arrow-circle {
    all: unset !important;
}

/* Responsive */
@media (max-width: 1300px) {
    html body a.client-kpi-fixed-card,
    html body .client-kpi-fixed-card {
        grid-template-columns: 68px minmax(0, 1fr) 42px !important;
        gap: 16px !important;
        padding: 22px 20px !important;
        height: 146px !important;
        min-height: 146px !important;
        max-height: 146px !important;
    }

    html body .client-kpi-fixed-card .client-kpi-fixed-icon {
        width: 62px !important;
        height: 62px !important;
        min-width: 62px !important;
        min-height: 62px !important;
    }

    html body .client-kpi-fixed-card .client-kpi-fixed-content strong {
        font-size: 25px !important;
    }

    html body .client-kpi-fixed-card .client-kpi-fixed-content span {
        font-size: 15px !important;
    }

    html body .client-kpi-fixed-card .client-kpi-fixed-content small {
        font-size: 13px !important;
    }
}

@media (max-width: 900px) {
    html body a.client-kpi-fixed-card,
    html body .client-kpi-fixed-card {
        grid-template-columns: 64px minmax(0, 1fr) 40px !important;
        height: 138px !important;
        min-height: 138px !important;
        max-height: 138px !important;
    }

    html body .client-kpi-fixed-card .client-kpi-fixed-content strong {
        font-size: 23px !important;
    }
}

/* =========================================================
   FIX FINAL HOME CLIENT - PANOURI MARI SUS, KPI JOS
   ========================================================= */

html body .client-home-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    margin: 0 0 36px 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

html body .client-home-kpis {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

html body .client-home-main-grid + .client-home-kpis {
    margin-top: 0 !important;
}

html body .client-home-panel {
    height: auto !important;
    min-height: 440px !important;
    box-sizing: border-box !important;
}

html body .client-home-kpi-card {
    min-height: 170px !important;
    height: 170px !important;
    box-sizing: border-box !important;
}

html body .client-home-main-grid,
html body .client-home-kpis,
html body .client-home-panel,
html body .client-home-kpi-card {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
}

@media (max-width: 1300px) {
    html body .client-home-main-grid {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 850px) {
    html body .client-home-kpis {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   CLIENT - PREZENȚELE MELE PREMIUM PAGE
   ========================================================= */

html body .client-attendance-page {
    color: #ffffff !important;
}

html body .client-attendance-hero {
    background:
        radial-gradient(circle at 86% 48%, rgba(225, 29, 46, 0.38), transparent 30%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    border-radius: 30px !important;
    padding: 42px 46px !important;
    margin-bottom: 22px !important;
    min-height: 210px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20) !important;
}

html body .client-attendance-badge {
    color: #e11d2e !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    letter-spacing: 3px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
}

html body .client-attendance-hero h1 {
    color: #ffffff !important;
    font-size: clamp(42px, 4vw, 66px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 12px 0 !important;
}

html body .client-attendance-hero p {
    color: #d1d5db !important;
    font-size: 20px !important;
    font-weight: 750 !important;
    margin: 0 !important;
}

html body .client-attendance-hero-icon {
    width: 110px !important;
    height: 110px !important;
    border-radius: 28px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    box-shadow: 0 18px 38px rgba(225, 29, 46, 0.32) !important;
}

html body .client-attendance-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
}

html body .client-attendance-stat {
    background: linear-gradient(145deg, #070707, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 22px 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

html body .client-attendance-stat-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
}

html body .client-attendance-stat span {
    display: block !important;
    color: #cbd5e1 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    margin-bottom: 6px !important;
}

html body .client-attendance-stat strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 1000 !important;
}

html body .client-attendance-stat small {
    display: block !important;
    color: #22c55e !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    margin-top: 6px !important;
}

html body .client-attendance-history-card {
    background: linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 30px !important;
    padding: 28px !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16) !important;
}

html body .client-attendance-history-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
}

html body .client-attendance-history-header h2 {
    color: #ffffff !important;
    font-size: 30px !important;
    font-weight: 1000 !important;
    margin: 0 0 6px 0 !important;
}

html body .client-attendance-history-header p {
    color: #9ca3af !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    margin: 0 !important;
}

html body .client-attendance-filter-pill {
    min-width: 170px !important;
    height: 46px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

html body .client-attendance-list {
    display: grid !important;
    gap: 12px !important;
}

html body .client-attendance-row {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.10), transparent 34%),
        rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 22px !important;
    padding: 16px !important;
    display: grid !important;
    grid-template-columns: 78px 1.55fr 1fr 1fr 140px 110px !important;
    align-items: center !important;
    gap: 18px !important;
}

html body .client-attendance-date-box {
    width: 72px !important;
    height: 78px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #9f1220) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 12px 26px rgba(225, 29, 46, 0.22) !important;
}

html body .client-attendance-date-box span {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

html body .client-attendance-date-box strong {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
}

html body .client-attendance-main h3 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 1000 !important;
    margin: 0 0 10px 0 !important;
}

html body .client-attendance-subline {
    display: grid !important;
    gap: 5px !important;
}

html body .client-attendance-subline span {
    color: #d1d5db !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

html body .client-attendance-subline i,
html body .client-attendance-info i {
    color: #e11d2e !important;
}

html body .client-attendance-info span {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 7px !important;
}

html body .client-attendance-info strong {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    display: block !important;
}

html body .client-attendance-info small {
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    display: block !important;
    margin-top: 4px !important;
}

html body .client-attendance-status span {
    background: rgba(34, 197, 94, 0.14) !important;
    color: #86efac !important;
    border-radius: 999px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

html body .client-attendance-status i {
    font-size: 8px !important;
    color: #22c55e !important;
}

html body .client-attendance-details-btn {
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

html body .client-attendance-details-btn:hover {
    background: rgba(225, 29, 46, 0.16) !important;
    transform: translateY(-1px) !important;
}

html body .client-attendance-note {
    margin-top: 16px !important;
    min-height: 42px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    color: #cbd5e1 !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 16px !important;
}

html body .client-attendance-note i {
    color: #e11d2e !important;
}

html body .client-attendance-empty {
    min-height: 240px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 28px !important;
}

html body .client-attendance-empty i {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 16px !important;
}

html body .client-attendance-empty h3 {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 1000 !important;
    margin: 0 0 8px 0 !important;
}

html body .client-attendance-empty p {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

@media (max-width: 1400px) {
    html body .client-attendance-row {
        grid-template-columns: 78px 1.35fr 1fr 1fr !important;
    }

    html body .client-attendance-status,
    html body .client-attendance-details-btn {
        grid-column: span 1 !important;
    }
}

@media (max-width: 1000px) {
    html body .client-attendance-hero {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    html body .client-attendance-stats {
        grid-template-columns: 1fr !important;
    }

    html body .client-attendance-row {
        grid-template-columns: 78px 1fr !important;
    }

    html body .client-attendance-status,
    html body .client-attendance-details-btn {
        grid-column: 2 !important;
    }
}

@media (max-width: 650px) {
    html body .client-attendance-row {
        grid-template-columns: 1fr !important;
    }

    html body .client-attendance-status,
    html body .client-attendance-details-btn {
        grid-column: auto !important;
    }

    html body .client-attendance-history-header {
        flex-direction: column !important;
    }
}

html body .client-activity-empty {
    padding: 28px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #bdbdbd !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

html body .client-activity-tabs {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    background: #0b0b0d !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    margin: 28px 0 28px 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
}

html body .client-activity-tabs .client-activity-tab {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 0 !important;
    outline: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #d8d8d8 !important;
    min-height: 70px !important;
    padding: 20px 26px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

html body .client-activity-tabs .client-activity-tab i {
    font-size: 20px !important;
    color: inherit !important;
}

html body .client-activity-tabs .client-activity-tab.active {
    background: linear-gradient(135deg, #e11d2e, #8b101b) !important;
    color: #ffffff !important;
}

html body .client-activity-tabs .client-activity-tab:not(.active):hover {
    background: rgba(225, 29, 46, 0.14) !important;
    color: #ffffff !important;
}

/* ACTIVITATEA MEA - TABURI PROGRAMARI / PREZENTE */

html body .activity-switcher-v2 {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 30px 0 30px 0 !important;
    padding: 0 !important;
}

html body .activity-switcher-btn-v2 {
    width: 100% !important;
    min-height: 86px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
    border-radius: 26px !important;
    background: linear-gradient(135deg, #0b0b0d, #151515) !important;
    color: #ffffff !important;
    padding: 20px 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    letter-spacing: 0.2px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.2s ease !important;
}

html body .activity-switcher-btn-v2:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(225, 29, 46, 0.45) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24) !important;
}

html body .activity-switcher-btn-v2.active {
    background: linear-gradient(135deg, #e11d2e, #8b101b) !important;
    color: #ffffff !important;
    border-color: rgba(225, 29, 46, 0.8) !important;
    box-shadow: 0 22px 55px rgba(225, 29, 46, 0.25) !important;
}

html body .activity-switcher-icon-v2 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    font-size: 24px !important;
}

html body .activity-switcher-btn-v2.active .activity-switcher-icon-v2 {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
}

html body .activity-switcher-btn-v2 span:last-child {
    color: inherit !important;
    line-height: 1.2 !important;
}

@media (max-width: 900px) {
    html body .activity-switcher-v2 {
        grid-template-columns: 1fr !important;
    }
}

html body .client-attendance-month-filter {
    width: auto !important;
    min-width: 230px !important;
    height: 58px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background:
        linear-gradient(145deg, #101010, #171717) !important;
    color: #ffffff !important;
    padding: 0 46px 0 18px !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    outline: none !important;
    cursor: pointer !important;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

html body .client-attendance-month-filter:hover {
    border-color: rgba(225, 29, 46, 0.45) !important;
}

html body .client-attendance-month-filter:focus {
    border-color: #e11d2e !important;
    box-shadow:
        0 0 0 4px rgba(225, 29, 46, 0.16),
        0 12px 26px rgba(0, 0, 0, 0.20) !important;
}

html body .client-attendance-month-filter option {
    background: #111111 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* =========================================================
   CLIENT PAYMENTS PAGE - PLĂȚILE MELE
   ========================================================= */

html body .client-payments-page {
    color: #ffffff !important;
}

html body .client-payments-hero {
    background:
        radial-gradient(circle at 86% 50%, rgba(225, 29, 46, 0.36), transparent 30%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    border-radius: 30px !important;
    padding: 44px 46px !important;
    margin-bottom: 24px !important;
    min-height: 220px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20) !important;
}

html body .client-payments-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #e11d2e !important;
    font-size: 15px !important;
    font-weight: 1000 !important;
    letter-spacing: 3px !important;
    margin-bottom: 22px !important;
}

html body .client-payments-hero h1 {
    color: #ffffff !important;
    font-size: clamp(38px, 4vw, 64px) !important;
    line-height: 1.05 !important;
    font-weight: 1000 !important;
    margin: 0 0 14px 0 !important;
}

html body .client-payments-hero p {
    color: #d1d5db !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

html body .client-payments-hero-icon {
    width: 120px !important;
    height: 120px !important;
    border-radius: 30px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 54px !important;
    box-shadow: 0 20px 36px rgba(225, 29, 46, 0.28) !important;
}

html body .client-payments-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 24px !important;
}

html body .client-payments-stats.two-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

html body .client-payments-stat {
    background: linear-gradient(145deg, #070707, #111111) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 26px !important;
    padding: 24px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16) !important;
}

html body .client-payments-stat-icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
}

html body .client-payments-stat span {
    color: #d1d5db !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

html body .client-payments-stat strong {
    color: #ffffff !important;
    display: block !important;
    font-size: 34px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    margin: 6px 0 !important;
}

html body .client-payments-stat small {
    color: #22c55e !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

html body .client-payments-history-card {
    background: linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 30px !important;
    padding: 28px !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16) !important;
}

html body .client-payments-history-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
}

html body .client-payments-history-header h2 {
    color: #ffffff !important;
    font-size: 34px !important;
    font-weight: 1000 !important;
    margin: 0 0 8px 0 !important;
}

html body .client-payments-history-header p {
    color: #9ca3af !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    margin: 0 !important;
}

html body .client-payments-month-filter {
    width: auto !important;
    min-width: 220px !important;
    height: 58px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    background: linear-gradient(145deg, #101010, #171717) !important;
    color: #ffffff !important;
    padding: 0 18px !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    outline: none !important;
    cursor: pointer !important;
}

html body .client-payments-month-filter option {
    background: #111111 !important;
    color: #ffffff !important;
}

html body .client-payments-list {
    display: grid !important;
    gap: 16px !important;
}

html body .client-payment-row {
    background:
        radial-gradient(circle at right, rgba(225, 29, 46, 0.12), transparent 35%),
        linear-gradient(145deg, #080808, #141414) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 22px !important;
    display: grid !important;
    grid-template-columns: 88px 1.3fr 1fr 0.9fr 0.9fr auto !important;
    gap: 22px !important;
    align-items: center !important;
}

html body .client-payment-date-box {
    width: 80px !important;
    height: 100px !important;
    border-radius: 18px !important;
    background: linear-gradient(145deg, #e11d2e, #9f1020) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 14px 28px rgba(225, 29, 46, 0.24) !important;
}

html body .client-payment-date-box span,
html body .client-payment-date-box small {
    font-size: 13px !important;
    font-weight: 950 !important;
}

html body .client-payment-date-box strong {
    font-size: 34px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    margin: 5px 0 !important;
}

html body .client-payment-main h3 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 1000 !important;
    margin: 0 0 12px 0 !important;
}

html body .client-payment-main p {
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    margin: 7px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

html body .client-payment-main i,
html body .client-payment-info i,
html body .client-payment-method i {
    color: #e11d2e !important;
}

html body .client-payment-info,
html body .client-payment-method,
html body .client-payment-amount {
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-left: 22px !important;
}

html body .client-payment-info span,
html body .client-payment-method span,
html body .client-payment-amount span {
    color: #9ca3af !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 7px !important;
}

html body .client-payment-info strong,
html body .client-payment-method strong {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    display: block !important;
}

html body .client-payment-info small {
    color: #d1d5db !important;
    font-size: 15px !important;
    font-weight: 750 !important;
}

html body .client-payment-amount strong {
    color: #e11d2e !important;
    font-size: 27px !important;
    font-weight: 1000 !important;
    display: block !important;
}

html body .client-payment-status span {
    background: rgba(22, 163, 74, 0.18) !important;
    color: #86efac !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
}

html body .client-payment-status i {
    color: #22c55e !important;
    font-size: 10px !important;
}

html body .client-payments-note {
    margin-top: 20px !important;
    color: #d1d5db !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

html body .client-payments-note i {
    color: #e11d2e !important;
}

html body .client-payments-empty {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    padding: 34px 24px !important;
    text-align: center !important;
}

html body .client-payments-empty i {
    color: #e11d2e !important;
    font-size: 42px !important;
    margin-bottom: 14px !important;
}

html body .client-payments-empty h3 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 950 !important;
}

html body .client-payments-empty p {
    color: #d1d5db !important;
    font-weight: 700 !important;
}

@media (max-width: 1300px) {
    html body .client-payment-row {
        grid-template-columns: 88px 1fr 1fr !important;
    }

    html body .client-payment-status {
        grid-column: 2 / -1 !important;
    }
}

@media (max-width: 850px) {
    html body .client-payments-hero,
    html body .client-payments-history-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    html body .client-payments-stats.two-cards {
        grid-template-columns: 1fr !important;
    }

    html body .client-payment-row {
        grid-template-columns: 1fr !important;
    }

    html body .client-payment-info,
    html body .client-payment-method,
    html body .client-payment-amount {
        border-left: none !important;
        padding-left: 0 !important;
    }
}

/* =========================================================
   HOME CLIENT - PRIORITIZARE ADAUGĂ PROGRAMARE + KPI JOS
   ========================================================= */

html body .client-home-page {
    width: 100% !important;
}

/* Hero mai compact ca să încapă mai mult conținut pe ecran */
html body .client-home-hero {
    min-height: 230px !important;
    padding: 32px 38px !important;
    margin-bottom: 22px !important;
}

html body .client-home-hero h1 {
    font-size: clamp(40px, 4vw, 62px) !important;
    line-height: 1.02 !important;
    margin-bottom: 12px !important;
}

html body .client-home-hero p {
    font-size: 18px !important;
    margin-bottom: 18px !important;
}

html body .client-home-hero-image,
html body .client-home-hero-image-wrap {
    max-height: 185px !important;
}

/* Panourile mari sus */
html body .client-home-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

html body .client-home-panel {
    min-height: 360px !important;
    height: auto !important;
    padding: 24px !important;
    border-radius: 28px !important;
    box-sizing: border-box !important;
}

/* Cardul următoarei programări mai compact */
html body .client-home-next-appointment {
    min-height: 155px !important;
    padding: 18px !important;
    margin-bottom: 16px !important;
}

html body .client-home-appointment-date {
    min-height: 130px !important;
}

html body .client-home-appointment-date strong {
    font-size: 58px !important;
    line-height: 1 !important;
}

html body .client-home-appointment-details {
    gap: 9px !important;
}

html body .client-home-appointment-details p,
html body .client-home-appointment-details div {
    font-size: 16px !important;
    margin-bottom: 7px !important;
}

/* Butoanele: Adaugă programare devine principal */
html body .client-home-panel .client-home-appointment-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 14px !important;
}

/* Adaugă programare - buton principal roșu */
html body .client-home-panel .client-home-appointment-actions .client-home-add-btn {
    width: 100% !important;
    min-height: 60px !important;
    border-radius: 20px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border: none !important;
    text-decoration: none !important;
    font-size: 21px !important;
    font-weight: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.30) !important;
}

html body .client-home-panel .client-home-appointment-actions .client-home-add-btn:hover {
    background: linear-gradient(145deg, #f12437, #c51524) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

/* Vezi toate programările - buton secundar */
html body .client-home-panel .client-home-appointment-actions .client-home-main-btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: none !important;
}

html body .client-home-panel .client-home-appointment-actions .client-home-main-btn:hover {
    background: rgba(225, 29, 46, 0.12) !important;
    border-color: rgba(225, 29, 46, 0.34) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

/* Noutăți mai compacte, să nu împingă pagina în jos */
html body .client-home-news-list {
    display: grid !important;
    gap: 14px !important;
}

html body .client-home-news-item {
    min-height: 112px !important;
    padding: 16px !important;
    border-radius: 22px !important;
}

html body .client-home-news-item p {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Cele 4 rubrici mici jos */
html body .client-home-kpis {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
}

html body .client-home-kpi-card {
    min-height: 128px !important;
    height: 128px !important;
    padding: 18px !important;
    border-radius: 24px !important;
    grid-template-columns: 64px minmax(0, 1fr) 32px !important;
    gap: 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

html body .client-home-kpi-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
}

html body .client-home-kpi-card span {
    font-size: 13px !important;
    margin-bottom: 4px !important;
}

html body .client-home-kpi-card strong {
    font-size: 22px !important;
    line-height: 1.08 !important;
}

html body .client-home-kpi-card small {
    font-size: 13px !important;
    margin-top: 4px !important;
    line-height: 1.25 !important;
}

html body .client-home-date-text {
    font-size: 20px !important;
}

html body .client-home-kpi-arrow,
html body .client-kpi-arrow-inside {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
}

/* Tip abonament să nu se taie urât */
html body .client-home-subscription-card strong {
    font-size: 21px !important;
    line-height: 1.12 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Responsiv */
@media (max-width: 1300px) {
    html body .client-home-main-grid {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    html body .client-home-panel {
        min-height: auto !important;
    }
}

@media (max-width: 850px) {
    html body .client-home-kpis {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-kpi-card {
        height: auto !important;
        min-height: 120px !important;
    }
}

/* =========================================================
   HOME CLIENT - PRIORITIZEAZĂ ADAUGĂ PROGRAMARE
   ========================================================= */

html body .client-home-appointment-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-top: 18px !important;
    width: 100% !important;
}

html body .client-home-appointment-actions .client-home-add-btn {
    width: 100% !important;
    min-height: 62px !important;
    border-radius: 22px !important;
    text-decoration: none !important;
    font-size: 22px !important;
    font-weight: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.30) !important;
}

html body .client-home-appointment-actions .client-home-add-btn:hover {
    background: linear-gradient(145deg, #f12437, #c51524) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

html body .client-home-appointment-actions .client-home-main-btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 18px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: none !important;
}

html body .client-home-appointment-actions .client-home-main-btn:hover {
    background: rgba(225, 29, 46, 0.13) !important;
    border-color: rgba(225, 29, 46, 0.35) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* Cele 4 rubrici mici rămân jos și sunt mai compacte */
html body .client-home-kpis {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

html body .client-home-kpi-card {
    min-height: 128px !important;
    height: 128px !important;
    padding: 18px !important;
    border-radius: 24px !important;
    grid-template-columns: 64px minmax(0, 1fr) 32px !important;
    gap: 14px !important;
    overflow: hidden !important;
}

html body .client-home-kpi-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 18px !important;
    font-size: 24px !important;
}

html body .client-home-kpi-card span {
    font-size: 13px !important;
    margin-bottom: 4px !important;
}

html body .client-home-kpi-card strong {
    font-size: 22px !important;
    line-height: 1.08 !important;
}

html body .client-home-kpi-card small {
    font-size: 13px !important;
    line-height: 1.25 !important;
}

@media (max-width: 1300px) {
    html body .client-home-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 850px) {
    html body .client-home-kpis {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-kpi-card {
        height: auto !important;
        min-height: 120px !important;
    }
}

.pg-status-pill.confirmata {
    background: #74d900 !important;
    color: #ffffff !important;
}

.pg-status-pill.anulata {
    background: #dc2626 !important;
    color: #ffffff !important;
}

.pg-status-pill.in-asteptare {
    background: #f59e0b !important;
    color: #111111 !important;
}

/* =========================================================
   PERSONAL GYM - RAPOARTE ADMIN DESIGN FINAL
   pentru clasele .pg-reports-*
   ========================================================= */

.pg-reports-page {
    width: 100% !important;
    min-height: 100vh !important;
    padding: 32px 44px 60px !important;
    background: #f3f4f6 !important;
    box-sizing: border-box !important;
}

.pg-reports-hero {
    min-height: 220px !important;
    border-radius: 34px !important;
    padding: 42px 48px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background:
        radial-gradient(circle at 86% 42%, rgba(225, 29, 46, 0.26), transparent 28%),
        linear-gradient(145deg, #050505 0%, #121212 58%, #270711 100%) !important;
    border: 1px solid rgba(225, 29, 46, 0.35) !important;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18) !important;
    margin-bottom: 24px !important;
    overflow: hidden !important;
}

.pg-reports-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #e11d2e !important;
    background: rgba(225, 29, 46, 0.10) !important;
    border-radius: 999px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 18px !important;
}

.pg-reports-hero h1 {
    color: #ffffff !important;
    font-size: 58px !important;
    font-weight: 1000 !important;
    margin: 0 0 12px !important;
    letter-spacing: 1px !important;
}

.pg-reports-hero p {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.pg-reports-hero-logo {
    width: 150px !important;
    height: 150px !important;
    min-width: 150px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(225, 29, 46, 0.45) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 22px 45px rgba(225, 29, 46, 0.18) !important;
    overflow: hidden !important;
}

.pg-reports-hero-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.pg-reports-kpi-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
}

.pg-reports-kpi-card,
.pg-reports-panel {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.07), transparent 34%),
        linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18) !important;
}

.pg-reports-kpi-card {
    min-height: 118px !important;
    border-radius: 22px !important;
    padding: 22px !important;
    display: grid !important;
    grid-template-columns: 68px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
}

.pg-reports-kpi-icon {
    width: 62px !important;
    height: 62px !important;
    border-radius: 20px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
}

.pg-reports-kpi-card span {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.pg-reports-kpi-card strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 1000 !important;
    margin: 4px 0 !important;
}

.pg-reports-kpi-card small {
    color: #22c55e !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.pg-reports-main-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.pg-reports-panel {
    border-radius: 26px !important;
    padding: 28px !important;
    min-height: 315px !important;
}

.pg-reports-panel-header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 22px !important;
}

.pg-reports-panel-header > div {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.pg-reports-section-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(225, 29, 46, 0.12) !important;
    color: #e11d2e !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
}

.pg-reports-panel h2 {
    color: #e11d2e !important;
    font-size: 26px !important;
    font-weight: 1000 !important;
    margin: 0 !important;
    letter-spacing: 0.6px !important;
}

.pg-reports-filter-chip {
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.pg-reports-list {
    display: grid !important;
    gap: 0 !important;
}

.pg-reports-list-spaced,
.pg-reports-spaced {
    margin-top: 24px !important;
}

.pg-reports-list-row,
.pg-reports-ranking-row {
    min-height: 54px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.pg-reports-list-row span,
.pg-reports-ranking-row strong {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}

.pg-reports-list-row strong,
.pg-reports-red-text {
    color: #e11d2e !important;
    font-size: 17px !important;
    font-weight: 1000 !important;
    text-align: right !important;
}

.pg-reports-ranking-row {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) auto !important;
}

.pg-reports-rank {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #e11d2e, #9f1220) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
}

.pg-reports-label {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.pg-reports-select {
    width: 100% !important;
    height: 54px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(225, 29, 46, 0.24) !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 0 18px !important;
    outline: none !important;
}

.pg-reports-filter-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.pg-reports-main-btn {
    width: 100% !important;
    min-height: 54px !important;
    margin-top: 22px !important;
    border: none !important;
    border-radius: 16px !important;
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 1000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    box-shadow: 0 18px 34px rgba(225, 29, 46, 0.22) !important;
}

.pg-reports-empty,
.pg-reports-loading,
.pg-reports-error-card {
    background: linear-gradient(145deg, #050505, #101010) !important;
    border: 1px solid rgba(225, 29, 46, 0.22) !important;
    border-radius: 24px !important;
    color: #ffffff !important;
}

.pg-reports-loading,
.pg-reports-error-card {
    padding: 28px !important;
    font-weight: 900 !important;
}

.pg-reports-error-card h3 {
    color: #e11d2e !important;
    margin-bottom: 10px !important;
}

.pg-reports-empty-text {
    color: #cbd5e1 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.pg-reports-empty {
    min-height: 150px !important;
    margin-top: 20px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
}

.pg-reports-empty div {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: rgba(225, 29, 46, 0.12) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
}

.pg-reports-empty strong {
    font-size: 18px !important;
    font-weight: 1000 !important;
}

.pg-reports-empty span {
    color: #9ca3af !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

@media (max-width: 1200px) {
    .pg-reports-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .pg-reports-main-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .pg-reports-page {
        padding: 16px 16px 110px !important;
        background: #050505 !important;
    }

    .pg-reports-hero {
        min-height: auto !important;
        padding: 28px 22px !important;
        border-radius: 28px !important;
    }

    .pg-reports-hero h1 {
        font-size: 42px !important;
    }

    .pg-reports-hero-logo {
        display: none !important;
    }

    .pg-reports-kpi-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .pg-reports-kpi-card {
        grid-template-columns: 1fr !important;
        min-height: 145px !important;
        padding: 18px !important;
    }

    .pg-reports-kpi-card strong {
        font-size: 24px !important;
    }

    .pg-reports-panel {
        padding: 20px !important;
        border-radius: 24px !important;
    }

    .pg-reports-panel-header {
        flex-direction: column !important;
    }

    .pg-reports-filter-grid {
        grid-template-columns: 1fr !important;
    }

    .pg-reports-ranking-row {
        grid-template-columns: 36px minmax(0, 1fr) !important;
    }

    .pg-reports-ranking-row .pg-reports-red-text {
        grid-column: 2 !important;
        text-align: left !important;
    }
}

/* =========================================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
   ========================================================= */

.mobile-client-header,
.mobile-bottom-nav {
    display: none !important;
}

/* =========================================================
   PERSONAL GYM - MOBILE BASE LAYOUT
   ========================================================= */

@media (max-width: 768px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        background: #050505 !important;
    }

    .page {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100vh !important;
        background: #050505 !important;
        overflow-x: hidden !important;
    }

    .sidebar {
        display: none !important;
    }

    main {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100vh !important;
        background:
            radial-gradient(circle at top right, rgba(225, 29, 46, 0.14), transparent 34%),
            linear-gradient(180deg, #030303 0%, #090909 100%) !important;
        overflow-x: hidden !important;
    }

    .content,
    article.content,
    .content.px-4 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 14px 104px 14px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .top-row,
    .main-top-row {
        display: none !important;
    }

    .mobile-client-header {
        display: grid !important;
        grid-template-columns: 52px minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 18px 14px 10px 14px !important;
        box-sizing: border-box !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        background: rgba(5, 5, 5, 0.82) !important;
        backdrop-filter: blur(16px) !important;
    }

    .mobile-menu-button {
        width: 48px !important;
        height: 48px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        color: #e11d2e !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 25px !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .mobile-client-header h1 {
        color: #ffffff !important;
        font-size: 23px !important;
        line-height: 1.1 !important;
        font-weight: 1000 !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mobile-user-pill {
        height: 42px !important;
        max-width: 118px !important;
        padding: 0 12px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        overflow: hidden !important;
    }

    .mobile-user-pill span {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        border-radius: 50% !important;
        background: #e11d2e !important;
        box-shadow: 0 0 12px rgba(225, 29, 46, 0.8) !important;
    }

    .mobile-user-pill strong {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mobile-bottom-nav {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        height: 74px !important;
        border-radius: 24px !important;
        background: linear-gradient(145deg, rgba(16, 16, 18, 0.96), rgba(5, 5, 5, 0.96)) !important;
        border: 1px solid rgba(255, 255, 255, 0.10) !important;
        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(18px) !important;
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        align-items: center !important;
        z-index: 2000 !important;
        padding: 6px !important;
        box-sizing: border-box !important;
    }

    .mobile-bottom-link {
        height: 62px !important;
        border-radius: 18px !important;
        color: #8d929b !important;
        text-decoration: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        font-size: 10px !important;
        font-weight: 850 !important;
    }

    .mobile-bottom-link i {
        font-size: 22px !important;
        line-height: 1 !important;
        color: inherit !important;
    }

    .mobile-bottom-link.active {
        color: #e11d2e !important;
        background: rgba(225, 29, 46, 0.10) !important;
        border: 1px solid rgba(225, 29, 46, 0.22) !important;
    }
}

/* =========================================================
   MOBILE FIX - HIDE OLD PAGE TOPBARS
   ========================================================= */

@media (max-width: 768px) {
    .client-home-topbar,
    .admin-home-topbar,
    .pg-admin-topbar,
    .client-page-topbar,
    .page-topbar {
        display: none !important;
    }
}

/* =========================================================
   MOBILE HOME CLIENT - CLEAN FINAL
   ========================================================= */

@media (max-width: 768px) {
    .client-home-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        overflow-x: hidden !important;
    }

    .client-home-hero,
    .client-home-hero-new {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 26px !important;
        padding: 24px 18px !important;
        margin: 0 0 16px 0 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        background:
            radial-gradient(circle at top right, rgba(225, 29, 46, 0.28), transparent 38%),
            linear-gradient(145deg, #050505, #141414) !important;
        border: 1px solid rgba(225, 29, 46, 0.25) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .client-home-hero h1,
    .client-home-hero-content h1 {
        font-size: 31px !important;
        line-height: 1.08 !important;
        margin: 0 0 10px 0 !important;
    }

    .client-home-hero p,
    .client-home-hero-content p {
        font-size: 14px !important;
        line-height: 1.45 !important;
        margin-bottom: 14px !important;
    }

    .client-home-hero-message,
    .client-home-hero-pill {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 42px minmax(0, 1fr) !important;
        gap: 12px !important;
        align-items: center !important;
        padding: 11px 12px !important;
        border-radius: 17px !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
        box-sizing: border-box !important;
    }

    .client-home-hero-image,
    .client-home-hero-visual {
        width: 100% !important;
        height: 155px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .client-home-hero-image img,
    .client-home-hero-visual img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .client-home-main-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin: 0 0 16px 0 !important;
        padding: 0 !important;
    }

    .client-home-panel {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 26px !important;
        padding: 18px !important;
        background: linear-gradient(145deg, #050505, #101010) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .client-home-panel-title {
        display: grid !important;
        grid-template-columns: 50px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: center !important;
        margin-bottom: 16px !important;
    }

    .client-home-panel-title h2,
    .client-home-panel-title h3 {
        font-size: 25px !important;
        line-height: 1.15 !important;
        margin: 0 !important;
        word-break: normal !important;
    }

    .client-home-appointment-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 14px !important;
    }

    .client-home-add-btn,
    .client-home-main-btn,
    .client-home-secondary-btn {
        width: 100% !important;
        min-height: 52px !important;
        border-radius: 17px !important;
        font-size: 15px !important;
        justify-content: center !important;
    }

    .client-home-news-item {
        grid-template-columns: 58px minmax(0, 1fr) auto !important;
        gap: 12px !important;
        padding: 14px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .client-home-news-top,
    .client-home-news-content {
        min-width: 0 !important;
    }

    .client-home-news-item p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .client-home-kpis {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .client-home-kpi-card {
        width: 100% !important;
        min-height: 96px !important;
        grid-template-columns: 58px minmax(0, 1fr) 30px !important;
        padding: 14px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
}

/* =========================================================
   FIX FINAL - MOBILE HOME DOUBLE HEADER
   ========================================================= */

@media (max-width: 768px) {
    html body .client-home-page .client-home-topbar,
    html body .client-home-topbar,
    html body .client-home-topbar-left,
    html body .client-home-user-pill,
    html body .client-home-auth-pill,
    html body .client-topbar-final,
    html body .client-topbar-final-left,
    html body .client-topbar-final-user {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    html body .mobile-client-header {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 72px !important;
        max-height: none !important;
        margin: 0 !important;
    }
}

.desktop-only-client-header {
    display: block !important;
}

@media (max-width: 768px) {
    html body .desktop-only-client-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* =========================================================
   FIX DEFINITIV - ASCUNDE TOPBAR VECHI HOME PE MOBIL
   ========================================================= */

@media (max-width: 768px) {
    html body section.pg-admin-topbar.desktop-home-topbar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }
}

/* =========================================================
   FIX FINAL REAL - ASCUNDE HEADERUL DUBLAT PE HOME CLIENT
   ========================================================= */

@media (max-width: 768px) {
    html body .client-home-page section.pg-admin-topbar,
    html body .client-home-page .pg-admin-topbar,
    html body section.pg-admin-topbar.desktop-home-topbar,
    html body .pg-admin-topbar.desktop-home-topbar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    html body .mobile-client-header {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* =========================================================
   ADMIN HOME - WEEK DROPDOWN PREMIUM DARK
   ========================================================= */

.pg-week-dropdown {
    position: relative !important;
    min-width: 300px !important;
    z-index: 9999 !important;
}

.pg-week-dropdown-button {
    width: 100% !important;
    height: 58px !important;
    padding: 0 18px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(225, 29, 46, 0.72) !important;
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 40%),
        linear-gradient(145deg, #070707, #151515) !important;
    color: #ffffff !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) 20px !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
    box-sizing: border-box !important;
}

.pg-week-current-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
    background: rgba(225, 29, 46, 0.12) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
}

.pg-week-dropdown-button span,
.pg-week-dropdown-button i {
    color: inherit !important;
}

.pg-week-chevron {
    color: #ffffff !important;
    font-size: 17px !important;
}

.pg-week-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    width: 100% !important;
    padding: 10px !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.13), transparent 42%),
        linear-gradient(145deg, rgba(8, 8, 8, 0.98), rgba(19, 19, 19, 0.98)) !important;
    border: 1px solid rgba(225, 29, 46, 0.34) !important;
    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    display: grid !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(14px) !important;
}

.pg-week-dropdown-item {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 14px !important;
    border-radius: 15px !important;
    background: transparent !important;
    color: #d1d5db !important;
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    user-select: none !important;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.pg-week-dropdown-item i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
    color: #9ca3af !important;
    background: rgba(255, 255, 255, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
}

.pg-week-dropdown-item:hover {
    background: rgba(225, 29, 46, 0.12) !important;
    color: #ffffff !important;
    transform: translateX(2px);
}

.pg-week-dropdown-item:hover i {
    color: #e11d2e !important;
    background: rgba(225, 29, 46, 0.12) !important;
}

.pg-week-dropdown-item.active {
    background:
        linear-gradient(145deg, rgba(225, 29, 46, 0.22), rgba(225, 29, 46, 0.09)) !important;
    color: #e11d2e !important;
    border: 1px solid rgba(225, 29, 46, 0.28) !important;
}

.pg-week-dropdown-item.active i {
    color: #e11d2e !important;
    background: rgba(225, 29, 46, 0.16) !important;
}

.pg-panel-title-row {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.pg-panel-title-row .pg-week-dropdown {
    margin-left: auto !important;
    margin-top: 2px !important;
}

/* =========================================================
   FIX FINAL - ASCUNDE TOPBAR VECHI PE HOME CLIENT MOBIL
   ========================================================= */

@media (max-width: 768px) {
    html body .client-home-page .pg-admin-topbar,
    html body .client-home-page .client-home-topbar,
    html body .client-home-page .client-topbar-final {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 768px) {
    .client-home-kpi-card span,
    .client-home-kpi-card p,
    .client-home-kpi-card small {
        line-height: 1.15 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .client-home-kpi-card {
        min-height: 104px !important;
    }
}

@media (max-width: 768px) {
    .client-home-panel.news-panel,
    .client-home-news-panel {
        min-height: auto !important;
        padding-bottom: 22px !important;
    }
}

@media (max-width: 768px) {
    .adauga-programare-page,
    .programare-page,
    .client-programare-page {
        padding-bottom: 120px !important;
    }
}

@media (max-width: 768px) {
    .programare-form-card,
    .programare-details-card,
    .client-form-card {
        padding: 24px !important;
        border-radius: 26px !important;
    }

    .programare-form-card input,
    .programare-form-card select,
    .programare-form-card textarea,
    .client-form-card input,
    .client-form-card select,
    .client-form-card textarea {
        min-height: 54px !important;
        border-radius: 15px !important;
        font-size: 15px !important;
    }

    .programare-form-card textarea,
    .client-form-card textarea {
        min-height: 92px !important;
    }
}

@media (max-width: 768px) {
    .programare-summary-card,
    .client-summary-card {
        padding: 24px !important;
        border-radius: 26px !important;
    }

    .programare-summary-card .summary-row,
    .client-summary-card .summary-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        padding: 13px 0 !important;
    }

    .programare-summary-card .summary-row strong,
    .client-summary-card .summary-row strong {
        font-size: 16px !important;
        word-break: break-word !important;
    }
}

/* =========================================================
   FORCE FINAL - URMĂTOAREA PROGRAMARE HOME CLIENT
   ========================================================= */

html body .client-home-page .client-home-panel .pg-next-modern-card {
    width: 100% !important;
    padding: 28px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top right, rgba(225, 29, 46, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-bottom: 22px !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-date {
    min-height: 220px !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at top, rgba(225, 29, 46, 0.30), transparent 58%),
        linear-gradient(145deg, rgba(225, 29, 46, 0.24), rgba(45, 8, 15, 0.96)) !important;
    border: 1px solid rgba(225, 29, 46, 0.38) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #ffffff !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-date span {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 950 !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-date strong {
    color: #ffffff !important;
    font-size: 82px !important;
    font-weight: 1000 !important;
    line-height: 0.95 !important;
    margin: 12px 0 !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-date small {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    letter-spacing: 2px !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-details {
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-detail {
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-detail:last-child {
    border-bottom: none !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-detail-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background: rgba(225, 29, 46, 0.16) !important;
    color: #e11d2e !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 21px !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-detail small {
    display: block !important;
    color: #9ca3af !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    margin-bottom: 4px !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-detail strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-btn {
    min-height: 62px !important;
    border-radius: 22px !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-sizing: border-box !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-btn.primary {
    background: linear-gradient(145deg, #e11d2e, #b31321) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(225, 29, 46, 0.28) !important;
}

html body .client-home-page .client-home-panel .pg-next-modern-btn.secondary {
    background: rgba(255, 255, 255, 0.055) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
}

@media (max-width: 768px) {
    html body .client-home-page .client-home-panel .pg-next-modern-card {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
        gap: 18px !important;
        border-radius: 24px !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-date {
        min-height: 150px !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-date strong {
        font-size: 58px !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-detail {
        grid-template-columns: 44px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-detail-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 14px !important;
        font-size: 18px !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-detail strong {
        font-size: 16px !important;
        overflow-wrap: break-word !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-actions {
        grid-template-columns: 1fr !important;
    }

    html body .client-home-page .client-home-panel .pg-next-modern-btn {
        min-height: 56px !important;
        font-size: 16px !important;
    }
}

/* =========================================================
   HOME ADMIN - MOBILE RESPONSIVE PE CLASELE REALE
   ========================================================= */

@media (max-width: 768px) {
    html body .pg-admin-home {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    html body .pg-admin-topbar {
        width: 100% !important;
        min-height: 64px !important;
        border-radius: 0 !important;
        padding: 12px 16px !important;
        margin: 0 0 16px 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 900 !important;
        background: rgba(5, 5, 5, 0.94) !important;
        backdrop-filter: blur(16px) !important;
        box-sizing: border-box !important;
    }

    html body .pg-admin-topbar-left {
        font-size: 24px !important;
        gap: 12px !important;
    }

    html body .pg-admin-topbar-right,
    html body .pg-auth-pill {
        max-width: 120px !important;
        overflow: hidden !important;
        white-space: nowrap !important;
    }

    html body .pg-auth-pill span:nth-child(2) {
        display: none !important;
    }

    html body .pg-auth-pill strong {
        font-size: 14px !important;
    }

    html body .pg-admin-hero {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        padding: 28px 22px !important;
        border-radius: 28px !important;
        margin-bottom: 18px !important;
        text-align: left !important;
        overflow: hidden !important;
    }

    html body .pg-admin-hero h1 {
        font-size: 34px !important;
        line-height: 1.05 !important;
        margin: 0 0 10px 0 !important;
    }

    html body .pg-admin-hero p {
        font-size: 15px !important;
        line-height: 1.35 !important;
        max-width: 100% !important;
    }

    html body .pg-hero-mini-info {
        width: 100% !important;
        min-height: 58px !important;
        padding: 12px 14px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
    }

    html body .pg-admin-hero-visual,
    html body .pg-athlete-image {
        width: 100% !important;
        height: 200px !important;
        border-radius: 22px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    html body .admin-actions-strip-final {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 18px !important;
        width: 100% !important;
    }

    html body .admin-action-final {
        width: 100% !important;
        min-height: 96px !important;
        border-radius: 22px !important;
        padding: 18px !important;
        box-sizing: border-box !important;
        grid-template-columns: 68px minmax(0, 1fr) 36px !important;
    }

    html body .admin-action-content h4 {
        font-size: 18px !important;
        line-height: 1.15 !important;
        margin: 0 !important;
    }

    html body .admin-action-content p {
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    html body .admin-home-panels-two,
    html body .pg-admin-bottom-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        margin-bottom: 18px !important;
    }

    html body .pg-admin-panel {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 24px !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    html body .pg-panel-title-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: start !important;
    }

    html body .pg-panel-title-row h3 {
        font-size: 25px !important;
        line-height: 1.12 !important;
        margin: 0 !important;
    }

    html body .pg-panel-title-row p {
        font-size: 14px !important;
        line-height: 1.35 !important;
        margin-top: 6px !important;
    }

    html body .pg-panel-title-row > a {
        justify-self: start !important;
        min-height: 42px !important;
        padding: 0 16px !important;
        border-radius: 14px !important;
    }

    html body .pg-empty-box {
        width: 100% !important;
        padding: 18px !important;
        border-radius: 18px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
        box-sizing: border-box !important;
    }
}

/* =========================================================
   HOME ADMIN MOBILE - GRAFIC + ABONAMENTE VÂNDUTE
   ========================================================= */

@media (max-width: 768px) {
    html body .pg-chart-panel {
        padding: 18px !important;
    }

    html body .pg-week-dropdown {
        width: 100% !important;
        position: relative !important;
    }

    html body .pg-week-dropdown-button {
        width: 100% !important;
        min-height: 52px !important;
        border-radius: 16px !important;
        padding: 10px 14px !important;
        box-sizing: border-box !important;
    }

    html body .pg-week-dropdown-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: calc(100% + 8px) !important;
        border-radius: 18px !important;
        z-index: 1000 !important;
    }

    html body .pg-real-chart {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
    }

    html body .pg-line-chart {
        width: 100% !important;
        min-width: 520px !important;
        height: 180px !important;
        padding: 10px 12px 8px 12px !important;
        box-sizing: border-box !important;
    }

    html body .pg-line-chart svg {
        width: 100% !important;
        height: 135px !important;
    }

    html body .pg-line-chart-days {
        min-width: 520px !important;
        font-size: 13px !important;
    }

    html body .pg-chart-summary {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 16px !important;
    }

    html body .pg-chart-summary > div {
        width: 100% !important;
        min-height: 82px !important;
        border-radius: 18px !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    html body .pg-subscriptions-panel {
        padding: 20px !important;
    }

    html body .pg-subscription-row {
        display: grid !important;
        grid-template-columns: 54px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding: 18px 0 !important;
        align-items: start !important;
    }

    html body .pg-subscription-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 15px !important;
    }

    html body .pg-subscription-info {
        min-width: 0 !important;
    }

    html body .pg-subscription-info strong {
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    html body .pg-progress {
        width: 100% !important;
        margin-top: 8px !important;
    }

    html body .pg-subscription-money {
        grid-column: 2 !important;
        justify-self: start !important;
        margin-top: 8px !important;
        font-size: 18px !important;
    }

    html body .pg-subscription-summary {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 18px !important;
    }
}

/* =========================================================
   ADMIN HOME MOBILE - FIX DEFINITIV PROGRAMĂRI DE AZI
   ========================================================= */

@media (max-width: 768px) {
    html body .pg-admin-panel .pg-appointments-list.pg-appointments-scroll {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        padding: 14px 16px !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        color: #111111 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "time"
            "client"
            "status" !important;
        gap: 7px !important;

        align-items: start !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-time {
        grid-area: time !important;
        color: #e11d2e !important;
        font-size: 24px !important;
        font-weight: 1000 !important;
        line-height: 1 !important;
        text-align: left !important;
        white-space: nowrap !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client {
        grid-area: client !important;
        width: 100% !important;
        min-width: 0 !important;
        display: block !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client strong {
        color: #111111 !important;
        font-size: 17px !important;
        font-weight: 1000 !important;
        line-height: 1.15 !important;
        display: block !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-appointment-client span {
        color: #64748b !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        line-height: 1.2 !important;
        display: block !important;
        margin-top: 3px !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill {
        grid-area: status !important;
        justify-self: start !important;
        align-self: start !important;
        width: auto !important;
        min-width: 118px !important;
        max-width: 100% !important;
        margin-top: 6px !important;
        padding: 8px 16px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        font-weight: 1000 !important;
        line-height: 1 !important;
        text-align: center !important;
        white-space: nowrap !important;
        position: static !important;
        transform: none !important;
    }

    html body .pg-admin-panel .pg-appointment-row.compact .pg-status-pill.confirmata {
        background: #74d900 !important;
        color: #ffffff !important;
    }
}

/* =========================================================
   ADMIN HOME - PROGRAMĂRI DE AZI CARDURI NOI
   Nu folosește .pg-appointment-row ca să nu se bată cu CSS-ul vechi
   ========================================================= */

html body .admin-today-appointments-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px !important;
    box-sizing: border-box !important;
}

html body .admin-today-appointment-card {
    width: 100% !important;
    min-height: 78px !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    color: #111111 !important;
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) 132px !important;
    grid-template-areas: "time info status" !important;
    gap: 14px !important;
    align-items: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

html body .admin-today-time {
    grid-area: time !important;
    color: #e11d2e !important;
    font-size: 22px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

html body .admin-today-info {
    grid-area: info !important;
    min-width: 0 !important;
}

html body .admin-today-info strong {
    display: block !important;
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 1000 !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
}

html body .admin-today-info span {
    display: block !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    margin-top: 4px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
}

html body .admin-today-status {
    grid-area: status !important;
    justify-self: end !important;
    min-width: 112px !important;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

html body .admin-today-status.programata {
    background: #e11d2e !important;
}

html body .admin-today-status.confirmata {
    background: #74d900 !important;
}

html body .admin-today-status.anulata {
    background: #374151 !important;
}

html body .admin-today-appointments-list::-webkit-scrollbar {
    width: 7px !important;
}

html body .admin-today-appointments-list::-webkit-scrollbar-track {
    background: transparent !important;
}

html body .admin-today-appointments-list::-webkit-scrollbar-thumb {
    background: rgba(225, 29, 46, 0.55) !important;
    border-radius: 999px !important;
}

/* TELEFON */
@media (max-width: 768px) {
    html body .admin-today-appointments-list {
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
        gap: 14px !important;
    }

    html body .admin-today-appointment-card {
        min-height: auto !important;
        padding: 16px !important;
        border-radius: 18px !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "time status"
            "info info" !important;
        gap: 12px 10px !important;
        align-items: start !important;
    }

    html body .admin-today-time {
        font-size: 24px !important;
        align-self: center !important;
    }

    html body .admin-today-status {
        justify-self: end !important;
        align-self: center !important;
        min-width: 108px !important;
        padding: 9px 13px !important;
        font-size: 12px !important;
    }

    html body .admin-today-info strong {
        font-size: 17px !important;
        line-height: 1.15 !important;
    }

    html body .admin-today-info span {
        font-size: 13px !important;
        line-height: 1.25 !important;
    }
}

.pg-reports-list {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
}

.raport-card-3d,
.pg-reports-card,
.pg-admin-panel {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* =========================================================
   FIX TEXT EMPTY - URMĂTOAREA PROGRAMARE CLIENT
   ========================================================= */

html body .client-home-panel .pg-next-modern-empty h3,
html body .client-home-panel .pg-next-modern-empty h4,
html body .client-home-panel .client-home-empty-appointment h3,
html body .client-home-panel .client-home-empty-appointment h4 {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

html body .client-home-panel .pg-next-modern-empty p,
html body .client-home-panel .client-home-empty-appointment p {
    color: #d1d5db !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================================================
   CLIENT - PROGRAMĂRI VIITOARE STATUS + BUTON MODIFICĂ
   ========================================================= */

html body .client-future-actions {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    width: fit-content !important;
}

html body .client-future-status {
    min-height: 42px !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    background: rgba(34, 197, 94, 0.16) !important;
    color: #86efac !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

html body .client-future-status-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    border-radius: 50% !important;
    background: #22c55e !important;
    display: inline-block !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.45) !important;
}

html body .client-future-edit-btn {
    min-height: 42px !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #111111 !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

html body .client-future-edit-btn i {
    color: #e11d2e !important;
    font-size: 16px !important;
}

html body .client-future-edit-btn:hover {
    background: #f3f4f6 !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
}

/* forțează zona din dreapta să păstreze badge + buton pe același rând */
html body .client-future-row-right,
html body .client-programare-right,
html body .programare-client-status-area {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* =========================================================
   CLIENT HOME - FIX BUTOANE URMĂTOAREA PROGRAMARE
   ========================================================= */

html body .client-home-appointment-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

html body .client-home-appointment-actions .client-home-main-btn,
html body .client-home-appointment-actions .client-home-add-btn,
html body .client-home-appointment-actions a {
    min-height: 76px !important;
    padding: 16px 22px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) 26px !important;
    align-items: center !important;
    column-gap: 14px !important;

    font-size: 24px !important;
    line-height: 1.12 !important;
    font-weight: 1000 !important;
    text-align: left !important;
    white-space: normal !important;
}

html body .client-home-appointment-actions .client-home-main-btn i:first-child,
html body .client-home-appointment-actions .client-home-add-btn i:first-child,
html body .client-home-appointment-actions a i:first-child {
    justify-self: start !important;
    font-size: 24px !important;
}

html body .client-home-appointment-actions .client-home-main-btn i:last-child,
html body .client-home-appointment-actions .client-home-add-btn i:last-child,
html body .client-home-appointment-actions a i:last-child {
    justify-self: end !important;
    font-size: 22px !important;
    margin-left: 0 !important;
}

/* textul din butoane */
html body .client-home-appointment-actions .client-home-main-btn span,
html body .client-home-appointment-actions .client-home-add-btn span,
html body .client-home-appointment-actions a span {
    min-width: 0 !important;
    display: block !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

