:root {
    --admin-dark: #020B1E;
    --admin-dark-2: #071B3A;
    --admin-gold: #1E73A8;
    --admin-gold-dark: #124C7C;
    --admin-light: #F4FAFF;
    --admin-white: #ffffff;
    --admin-text: #102A43;
    --admin-muted: #6B7C8F;
    --admin-border: #B8D8F0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Login */

.login-body {
    min-height: 100vh;
    background:
        linear-gradient(rgba(2, 11, 30, 0.72), rgba(2, 11, 30, 0.88)),
        url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.login-brand {
    text-align: center;
    margin-bottom: 28px;
}

.login-brand h1 {
    color: var(--admin-dark);
    font-weight: 800;
    margin-bottom: 6px;
}

.login-brand p {
    color: var(--admin-gold-dark);
    font-weight: 600;
    margin-bottom: 0;
}

.form-label {
    font-weight: 700;
    color: var(--admin-text);
}

.form-control {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid var(--admin-border);
}

.form-control:focus {
    border-color: var(--admin-gold);
    box-shadow: 0 0 0 0.2rem rgba(18, 76, 124, 0.18);
}

.btn-login {
    background-color: var(--admin-gold);
    border: 1px solid var(--admin-gold);
    color: var(--admin-dark);
    font-weight: 800;
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--admin-gold-dark);
    border-color: var(--admin-gold-dark);
    color: var(--admin-white);
    transform: translateY(-2px);
}

.login-footer {
    text-align: center;
    margin-top: 22px;
}

.login-footer a {
    color: var(--admin-gold-dark);
    font-weight: 700;
    text-decoration: none;
}

/* Admin layout */

.admin-body {
    background-color: var(--admin-light);
    color: var(--admin-text);
}

.admin-layout {
    min-height: 100vh;
    display: flex;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--admin-dark), var(--admin-dark-2));
    color: var(--admin-white);
    padding: 28px 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}

.sidebar-brand {
    margin-bottom: 35px;
    padding: 0 8px;
}

.sidebar-brand h4 {
    color: var(--admin-gold);
    font-weight: 800;
    margin-bottom: 4px;
}

.sidebar-brand span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: rgba(18, 76, 124, 0.16);
    color: var(--admin-gold);
}

.admin-main {
    margin-left: 280px;
    width: calc(100% - 280px);
    min-height: 100vh;
}

.admin-topbar {
    height: 78px;
    background-color: var(--admin-white);
    border-bottom: 1px solid var(--admin-border);
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-topbar h5 {
    color: var(--admin-dark);
    font-weight: 800;
}

.admin-topbar small {
    color: var(--admin-muted);
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-user strong {
    display: block;
    color: var(--admin-dark);
}

.topbar-user small {
    display: block;
}

.admin-content {
    padding: 32px;
}

.stat-card,
.admin-card {
    background-color: var(--admin-white);
    border-radius: 22px;
    border: 1px solid var(--admin-border);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.stat-card {
    padding: 24px;
}

.stat-card span {
    color: var(--admin-muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.stat-card h3 {
    color: var(--admin-dark);
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 6px;
}

.stat-card p {
    color: var(--admin-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.admin-card {
    padding: 28px;
    height: 100%;
}

.admin-card h5 {
    color: var(--admin-dark);
    font-weight: 800;
    margin-bottom: 14px;
}

.admin-card p {
    color: var(--admin-muted);
}

/* Responsive */

@media (max-width: 992px) {
    .admin-sidebar {
        position: static;
        width: 100%;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
    }

    .admin-topbar {
        height: auto;
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-user {
        width: 100%;
        justify-content: space-between;
    }
}

.btn-admin-primary {
    background-color: var(--admin-gold);
    border: 1px solid var(--admin-gold);
    color: var(--admin-dark);
    font-weight: 800;
    border-radius: 14px;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.btn-admin-primary:hover {
    background-color: var(--admin-gold-dark);
    border-color: var(--admin-gold-dark);
    color: var(--admin-white);
    transform: translateY(-2px);
}

.admin-table {
    margin-bottom: 0;
}

.admin-table thead th {
    background-color: var(--admin-light);
    color: var(--admin-dark);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--admin-border);
}

.admin-table tbody td {
    color: var(--admin-text);
    border-color: var(--admin-border);
    padding: 16px 12px;
}

.admin-table small {
    color: var(--admin-muted);
}

.admin-table .btn {
    border-radius: 10px;
    font-weight: 600;
}

.room-thumb {
    width: 95px;
    height: 65px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--admin-border);
}

.room-thumb-placeholder {
    width: 95px;
    height: 65px;
    border-radius: 14px;
    background-color: var(--admin-light);
    border: 1px dashed var(--admin-border);
    color: var(--admin-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.room-preview {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--admin-border);
}

.dashboard-welcome {
    background: linear-gradient(135deg, var(--admin-dark), var(--admin-dark-2));
    color: var(--admin-white);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.dashboard-welcome h4 {
    color: var(--admin-gold);
    font-weight: 900;
}

.dashboard-welcome p {
    color: rgba(255, 255, 255, 0.75);
}

.dashboard-date {
    background-color: rgba(18, 76, 124, 0.15);
    color: var(--admin-gold);
    border: 1px solid rgba(18, 76, 124, 0.3);
    padding: 12px 18px;
    border-radius: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.stat-card-small h3 {
    font-size: 1.8rem;
}

.quick-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quick-summary div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--admin-light);
    border-radius: 16px;
    padding: 14px 16px;
}

.quick-summary span {
    color: var(--admin-muted);
    font-weight: 700;
}

.quick-summary strong {
    color: var(--admin-dark);
    font-size: 1.25rem;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--admin-light);
    border-radius: 16px;
    padding: 14px;
}

.payment-item strong {
    display: block;
    color: var(--admin-dark);
}

.payment-item span {
    display: block;
    color: var(--admin-muted);
    font-size: 0.9rem;
}

.payment-item small {
    display: block;
    color: var(--admin-muted);
}

.dashboard-action {
    display: block;
    background-color: var(--admin-white);
    border: 1px solid var(--admin-border);
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    color: var(--admin-dark);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dashboard-action:hover {
    background-color: var(--admin-gold);
    color: var(--admin-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .dashboard-welcome {
        flex-direction: column;
        align-items: flex-start;
    }
}

.report-card {
    background-color: var(--admin-white);
    border: 1px solid var(--admin-border);
    border-radius: 22px;
    padding: 26px;
    min-height: 250px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.report-card h5 {
    color: var(--admin-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.report-card p {
    color: var(--admin-muted);
    margin-bottom: 22px;
}

/* ===========================
   LOGIN ADMIN PREMIUM AZUL MARINO
=========================== */

:root {
    --admin-black: #020B1E;
    --admin-brown: #0B2D57;
    --admin-gold: #1E73A8;
    --admin-gold-dark: #124C7C;
    --admin-gold-light: #EAF6FF;
    --admin-cream: #EAF6FF;
    --admin-white: #ffffff;
    --admin-text: #102A43;
    --admin-muted: #6B7C8F;
    --admin-border: rgba(18, 76, 124, 0.28);
    --admin-shadow: 0 28px 80px rgba(2, 11, 30, 0.22);
    --admin-shadow-soft: 0 16px 44px rgba(2, 11, 30, 0.12);
    --admin-font-title: "Playfair Display", serif;
    --admin-font-body: "Inter", sans-serif;
}

.admin-login-body {
    min-height: 100vh;
    font-family: var(--admin-font-body);
    background:
        linear-gradient(rgba(2, 11, 30, 0.72), rgba(2, 11, 30, 0.86)),
        url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    color: var(--admin-white);
    overflow-x: hidden;
    position: relative;
}

.admin-login-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(18, 76, 124, 0.22), transparent 32%),
        radial-gradient(circle at 84% 80%, rgba(18, 76, 124, 0.14), transparent 30%);
    pointer-events: none;
}

.login-bg-orb {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 76, 124, 0.26), transparent 68%);
    filter: blur(4px);
    pointer-events: none;
    animation: loginOrbFloat 7s ease-in-out infinite;
}

.login-bg-orb-1 {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 90px;
}

.login-bg-orb-2 {
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: 80px;
    animation-delay: 1.2s;
}

@keyframes loginOrbFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-22px);
    }
}

.admin-login-wrapper {
    position: relative;
    z-index: 2;
}

.login-info-panel {
    padding: 36px;
    animation: loginFadeRight 0.85s ease both;
}

.login-brand-large,
.login-mobile-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.login-brand-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--admin-gold-light), var(--admin-gold-dark));
    color: var(--admin-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 0 42px rgba(18, 76, 124, 0.36);
}

.login-brand-large h1,
.login-mobile-brand h1 {
    font-family: var(--admin-font-title);
    color: var(--admin-gold);
    font-weight: 900;
    margin-bottom: 2px;
}

.login-brand-large span,
.login-mobile-brand span {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 800;
}

.login-info-panel h2 {
    font-family: var(--admin-font-title);
    color: var(--admin-white);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 24px;
}

.login-info-panel p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    font-size: 1.05rem;
    max-width: 650px;
}

.login-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.login-feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(18, 76, 124, 0.24);
    border-radius: 24px;
    padding: 22px;
    backdrop-filter: blur(14px);
    transition: all 0.35s ease;
}

.login-feature-item:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.14);
}

.login-feature-item i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background-color: rgba(18, 76, 124, 0.16);
    color: var(--admin-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.login-feature-item strong {
    display: block;
    color: var(--admin-white);
    font-weight: 900;
    margin-bottom: 5px;
}

.login-feature-item span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.55;
}

.login-card-premium {
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 76, 124, 0.34);
    border-radius: 34px;
    padding: 42px;
    box-shadow: var(--admin-shadow);
    backdrop-filter: blur(18px);
    color: var(--admin-text);
    animation: loginFadeUp 0.85s ease both;
}

.login-mobile-brand {
    margin-bottom: 28px;
}

.login-mobile-brand h1 {
    color: var(--admin-black);
}

.login-mobile-brand span {
    color: var(--admin-muted);
}

.login-card-header {
    margin-bottom: 28px;
}

.login-card-header p {
    color: var(--admin-gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.login-card-header h3 {
    font-family: var(--admin-font-title);
    color: var(--admin-black);
    font-weight: 900;
    font-size: 2.35rem;
    margin-bottom: 10px;
}

.login-card-header span {
    color: var(--admin-muted);
    line-height: 1.7;
}

.login-alerts .alert {
    border-radius: 18px;
    border: none;
    font-weight: 700;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    color: var(--admin-black);
    font-weight: 900;
    margin-bottom: 9px;
}

.login-input-icon {
    position: relative;
}

.login-input-icon > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--admin-gold-dark);
    z-index: 2;
}

.login-input-icon .form-control {
    height: 54px;
    border-radius: 18px;
    border: 1px solid var(--admin-border);
    background-color: var(--admin-white);
    padding-left: 45px;
    padding-right: 48px;
    font-weight: 600;
}

.login-input-icon .form-control:focus {
    border-color: var(--admin-gold);
    box-shadow: 0 0 0 0.22rem rgba(18, 76, 124, 0.18);
}

.show-password-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    color: var(--admin-muted);
    font-size: 1.1rem;
}

.show-password-btn:hover {
    color: var(--admin-gold-dark);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 10px 0 24px;
}

.login-options div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--admin-muted);
    font-weight: 800;
    font-size: 0.9rem;
}

.login-options div i {
    color: var(--admin-gold-dark);
}

.login-options a {
    color: var(--admin-gold-dark);
    font-weight: 900;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-options a:hover {
    color: var(--admin-black);
}

.login-submit-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--admin-gold-light), var(--admin-gold), var(--admin-gold-dark));
    color: var(--admin-black);
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(18, 76, 124, 0.28);
    transition: all 0.35s ease;
}

.login-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-22deg);
    transition: all 0.65s ease;
}

.login-submit-btn:hover {
    color: var(--admin-black);
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(18, 76, 124, 0.38);
}

.login-submit-btn:hover::before {
    left: 140%;
}

.login-demo-box {
    margin-top: 24px;
    background-color: rgba(18, 76, 124, 0.12);
    border: 1px solid rgba(18, 76, 124, 0.28);
    border-radius: 22px;
    padding: 18px;
}

.login-demo-box strong {
    display: block;
    color: var(--admin-black);
    font-weight: 900;
    margin-bottom: 8px;
}

.login-demo-box span {
    display: block;
    color: var(--admin-muted);
    font-weight: 700;
    line-height: 1.6;
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loginFadeRight {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .admin-login-wrapper {
        padding: 40px 0;
    }

    .login-card-premium {
        padding: 34px;
    }
}

@media (max-width: 576px) {
    .login-card-premium {
        padding: 28px;
        border-radius: 28px;
    }

    .login-card-header h3 {
        font-size: 2rem;
    }

    .login-brand-icon {
        width: 58px;
        height: 58px;
    }

    .login-mobile-brand h1 {
        font-size: 1.6rem;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================
   ADMIN SHELL PREMIUM AZUL MARINO
=========================== */

.admin-shell-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(18, 76, 124, 0.13), transparent 34%),
        #EAF6FF;
    font-family: var(--admin-font-body, "Inter", sans-serif);
    color: var(--admin-text, #102A43);
}

.admin-shell {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 300px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(18, 76, 124, 0.22), transparent 34%),
        linear-gradient(180deg, #020B1E, #0B2D57);
    color: #ffffff;
    padding: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 70px rgba(2, 11, 30, 0.22);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.admin-sidebar-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAF6FF, #124C7C);
    color: #020B1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 34px rgba(18, 76, 124, 0.32);
}

.admin-sidebar-brand h4 {
    font-family: var(--admin-font-title, "Playfair Display", serif);
    color: #1E73A8;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.admin-sidebar-brand span {
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.68rem;
    font-weight: 800;
}

.admin-user-card {
    display: flex;
    align-items: center;
    gap: 13px;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 22px;
    padding: 16px;
    margin-bottom: 22px;
}

.admin-user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 17px;
    background-color: rgba(18, 76, 124, 0.15);
    color: #1E73A8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-user-card strong {
    display: block;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.15;
}

.admin-user-card span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow-y: auto;
    padding-right: 4px;
}

.admin-sidebar-menu::-webkit-scrollbar {
    width: 5px;
}

.admin-sidebar-menu::-webkit-scrollbar-thumb {
    background-color: rgba(18, 76, 124, 0.45);
    border-radius: 999px;
}

.admin-sidebar-menu a,
.admin-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 16px;
    transition: all 0.25s ease;
}

.admin-sidebar-menu a i,
.admin-sidebar-footer a i {
    width: 22px;
    color: #1E73A8;
    font-size: 1.05rem;
}

.admin-sidebar-menu a:hover,
.admin-sidebar-menu a.active {
    background-color: rgba(18, 76, 124, 0.15);
    color: #ffffff;
    transform: translateX(4px);
}

.admin-sidebar-menu a.active {
    border: 1px solid rgba(18, 76, 124, 0.32);
}

.admin-sidebar-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(18, 76, 124, 0.18);
}

.admin-sidebar-footer .logout-link {
    color: #ffb3a8;
}

.admin-sidebar-footer .logout-link i {
    color: #ffb3a8;
}

.admin-main {
    margin-left: 300px;
    width: calc(100% - 300px);
    min-height: 100vh;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background-color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 76, 124, 0.22);
    padding: 20px 34px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-topbar p {
    color: #124C7C;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 0.72rem;
    margin-bottom: 3px;
}

.admin-topbar h1 {
    font-family: var(--admin-font-title, "Playfair Display", serif);
    color: #020B1E;
    font-weight: 900;
    margin: 0;
}

.admin-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 15px;
    background-color: #020B1E;
    color: #1E73A8;
    font-size: 1.35rem;
}

.admin-topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.25);
    color: #102A43;
    text-decoration: none;
    font-weight: 900;
    padding: 10px 16px;
    box-shadow: 0 10px 28px rgba(2, 11, 30, 0.06);
}

.admin-topbar-btn:hover {
    background-color: #020B1E;
    color: #1E73A8;
    transform: translateY(-2px);
}

.admin-topbar-btn.logout {
    color: #b23b2e;
}

.admin-content {
    padding: 34px;
}

.admin-flash-wrapper {
    margin-bottom: 22px;
}

.admin-flash-wrapper .alert {
    border: none;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 12px 34px rgba(2, 11, 30, 0.08);
}

/* ===========================
   DASHBOARD ADMIN PREMIUM AZUL MARINO
=========================== */

.dashboard-hero-admin {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 28%, rgba(18, 76, 124, 0.24), transparent 34%),
        linear-gradient(135deg, #020B1E, #0B2D57);
    color: #ffffff;
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 28px;
    box-shadow: 0 28px 80px rgba(2, 11, 30, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.dashboard-hero-admin p {
    color: #1E73A8;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    font-weight: 900;
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.dashboard-hero-admin h2 {
    font-family: var(--admin-font-title, "Playfair Display", serif);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 10px;
}

.dashboard-hero-admin span {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.dashboard-hero-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAF6FF, #124C7C);
    color: #020B1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.35rem;
    flex-shrink: 0;
    box-shadow: 0 0 45px rgba(18, 76, 124, 0.34);
}

.admin-kpi-card {
    height: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.24);
    border-radius: 28px;
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 16px 44px rgba(2, 11, 30, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-kpi-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 76, 124, 0.16), transparent 70%);
}

.admin-kpi-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.12);
}

.admin-kpi-card.kpi-dark {
    background: linear-gradient(135deg, #020B1E, #0B2D57);
    color: #ffffff;
}

.admin-kpi-card.kpi-gold {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
        linear-gradient(135deg, #EAF6FF, #1E73A8);
}

.admin-kpi-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background-color: #EAF6FF;
    color: #124C7C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.kpi-dark .admin-kpi-icon {
    background-color: rgba(18, 76, 124, 0.16);
    color: #1E73A8;
}

.kpi-gold .admin-kpi-icon {
    background-color: rgba(2, 11, 30, 0.12);
    color: #020B1E;
}

.admin-kpi-card span {
    display: block;
    color: #6B7C8F;
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.kpi-dark span,
.kpi-dark p {
    color: rgba(255, 255, 255, 0.68);
}

.kpi-gold span,
.kpi-gold p {
    color: rgba(2, 11, 30, 0.68);
}

.admin-kpi-card h3 {
    color: #020B1E;
    font-family: var(--admin-font-title, "Playfair Display", serif);
    font-size: 2.15rem;
    font-weight: 900;
    margin: 4px 0;
    position: relative;
    z-index: 1;
}

.kpi-dark h3 {
    color: #1E73A8;
}

.admin-kpi-card p {
    color: #6B7C8F;
    margin: 0;
    font-weight: 600;
}

.admin-mini-stat {
    height: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 12px 34px rgba(2, 11, 30, 0.06);
}

.admin-mini-stat span {
    color: #6B7C8F;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-mini-stat span i {
    color: #124C7C;
}

.admin-mini-stat strong {
    color: #020B1E;
    font-family: var(--admin-font-title, "Playfair Display", serif);
    font-size: 1.55rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-panel-card {
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 16px 44px rgba(2, 11, 30, 0.08);
    height: 100%;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-panel-header p {
    color: #124C7C;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 0.72rem;
    margin-bottom: 5px;
}

.admin-panel-header h4 {
    font-family: var(--admin-font-title, "Playfair Display", serif);
    color: #020B1E;
    font-weight: 900;
    margin: 0;
}

.admin-panel-link {
    color: #124C7C;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.admin-panel-link:hover {
    color: #020B1E;
}

.admin-premium-table {
    margin-bottom: 0;
}

.admin-premium-table thead th {
    background-color: #EAF6FF;
    color: #020B1E;
    border: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px;
}

.admin-premium-table tbody td {
    border-color: rgba(18, 76, 124, 0.18);
    padding: 16px 14px;
    color: #102A43;
}

.admin-premium-table tbody td small {
    color: #6B7C8F;
}

.admin-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.75rem;
    font-weight: 900;
    background-color: #EAF6FF;
    color: #6B7C8F;
}

.admin-badge.warning {
    background-color: #fff3cd;
    color: #8a6500;
}

.admin-badge.info {
    background-color: #e7f1ff;
    color: #0b5ed7;
}

.admin-badge.success {
    background-color: #d1e7dd;
    color: #146c43;
}

.admin-badge.danger {
    background-color: #f8d7da;
    color: #b02a37;
}

.admin-badge.dark {
    background-color: #020B1E;
    color: #1E73A8;
}

.quick-actions-admin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.quick-actions-admin a {
    background-color: #EAF6FF;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 22px;
    padding: 18px;
    text-decoration: none;
    color: #102A43;
    font-weight: 900;
    transition: all 0.3s ease;
}

.quick-actions-admin a:hover {
    background-color: #020B1E;
    color: #1E73A8;
    transform: translateY(-5px);
}

.quick-actions-admin i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EAF6FF, #124C7C);
    color: #020B1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.quick-actions-admin span {
    display: block;
}

.admin-payment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-payment-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #EAF6FF;
    border: 1px solid rgba(18, 76, 124, 0.18);
    border-radius: 22px;
    padding: 16px;
}

.admin-payment-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background-color: #ffffff;
    color: #124C7C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-payment-item strong {
    display: block;
    color: #020B1E;
    font-weight: 900;
}

.admin-payment-item span {
    display: block;
    color: #6B7C8F;
    font-weight: 700;
    line-height: 1.45;
}

.admin-payment-item small {
    color: #124C7C;
    font-weight: 800;
}

.admin-summary-card {
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(2, 11, 30, 0.07);
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-summary-card > i {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, #EAF6FF, #124C7C);
    color: #020B1E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.admin-summary-card span {
    display: block;
    color: #6B7C8F;
    font-weight: 900;
}

.admin-summary-card strong {
    display: block;
    color: #020B1E;
    font-family: var(--admin-font-title, "Playfair Display", serif);
    font-size: 1.5rem;
    font-weight: 900;
}

.admin-sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 11, 30, 0.52);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.admin-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive admin */

@media (max-width: 1200px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
    }

    .admin-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .admin-topbar {
        padding: 16px 20px;
    }

    .admin-topbar h1 {
        font-size: 1.65rem;
    }

    .admin-content {
        padding: 22px;
    }

    .dashboard-hero-admin {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .dashboard-hero-icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .quick-actions-admin {
        grid-template-columns: 1fr;
    }

    .admin-panel-card {
        padding: 22px;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        width: 285px;
        padding: 20px;
    }

    .admin-topbar-actions {
        display: none;
    }

    .admin-content {
        padding: 18px;
    }

    .admin-mini-stat {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-panel-header {
        flex-direction: column;
    }
}

/* ===========================
   ADMIN GLOBAL POLISH - AZUL MARINO
   Tablas, formularios y módulos
=========================== */

/* Tarjetas generales usadas en módulos */

.admin-card {
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 16px 44px rgba(2, 11, 30, 0.08);
    transition: all 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 22px 58px rgba(2, 11, 30, 0.11);
}

.admin-card h5 {
    font-family: var(--admin-font-title, "Playfair Display", serif);
    color: #020B1E;
    font-weight: 900;
    font-size: 1.55rem;
}

.admin-card p {
    color: #6B7C8F;
    font-weight: 600;
    line-height: 1.7;
}

/* Formularios */

.admin-content .form-label {
    color: #020B1E;
    font-weight: 900;
    margin-bottom: 8px;
}

.admin-content .form-control,
.admin-content .form-select {
    border-radius: 16px;
    border: 1px solid rgba(18, 76, 124, 0.28);
    padding: 12px 14px;
    color: #102A43;
    font-weight: 600;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.admin-content textarea.form-control {
    min-height: 120px;
}

.admin-content .form-control:hover,
.admin-content .form-select:hover {
    border-color: rgba(18, 76, 124, 0.58);
}

.admin-content .form-control:focus,
.admin-content .form-select:focus {
    border-color: #1E73A8;
    box-shadow: 0 0 0 0.22rem rgba(18, 76, 124, 0.18);
}

.admin-content .form-control::placeholder {
    color: rgba(107, 124, 143, 0.62);
}

/* Botón principal admin */

.btn-admin-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EAF6FF, #1E73A8, #124C7C);
    color: #020B1E;
    border: none;
    border-radius: 999px;
    padding: 11px 24px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(18, 76, 124, 0.26);
    transition: all 0.35s ease;
}

.btn-admin-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: skewX(-22deg);
    transition: all 0.65s ease;
}

.btn-admin-primary:hover {
    color: #020B1E;
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(18, 76, 124, 0.36);
}

.btn-admin-primary:hover::before {
    left: 140%;
}

/* Botones secundarios */

.admin-content .btn-outline-primary,
.admin-content .btn-outline-success,
.admin-content .btn-outline-danger,
.admin-content .btn-outline-warning,
.admin-content .btn-outline-secondary,
.admin-content .btn-outline-info {
    border-radius: 999px;
    font-weight: 900;
    padding: 7px 14px;
    transition: all 0.25s ease;
}

.admin-content .btn-sm {
    font-size: 0.78rem;
}

.admin-content .btn:hover {
    transform: translateY(-2px);
}

/* Tablas generales */

.admin-table,
.admin-content .table {
    margin-bottom: 0;
}

.admin-table thead th,
.admin-content .table thead th {
    background-color: #EAF6FF;
    color: #020B1E;
    border: none;
    padding: 15px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    white-space: nowrap;
}

.admin-table tbody td,
.admin-content .table tbody td {
    border-color: rgba(18, 76, 124, 0.17);
    padding: 16px 14px;
    color: #102A43;
    vertical-align: middle;
}

.admin-table tbody tr,
.admin-content .table tbody tr {
    transition: all 0.25s ease;
}

.admin-table tbody tr:hover,
.admin-content .table tbody tr:hover {
    background-color: rgba(234, 246, 255, 0.68);
}

.admin-table strong,
.admin-content .table strong {
    color: #020B1E;
    font-weight: 900;
}

.admin-table small,
.admin-content .table small {
    color: #6B7C8F;
    font-weight: 600;
}

/* Badges Bootstrap más bonitos */

.admin-content .badge {
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

/* Filtros y buscadores */

.admin-card form {
    margin-bottom: 0;
}

.admin-card .input-group .form-control {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.admin-card .input-group .btn {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    font-weight: 900;
}

/* Imágenes pequeñas de habitaciones */

.room-thumb {
    width: 82px;
    height: 62px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(18, 76, 124, 0.32);
    box-shadow: 0 10px 26px rgba(2, 11, 30, 0.12);
}

.room-thumb-placeholder {
    width: 82px;
    height: 62px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(18, 76, 124, 0.28), transparent 40%),
        #EAF6FF;
    color: #124C7C;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(18, 76, 124, 0.26);
    font-size: 1.35rem;
}

.room-preview {
    max-width: 260px;
    border-radius: 24px;
    border: 2px solid rgba(18, 76, 124, 0.32);
    box-shadow: 0 16px 44px rgba(2, 11, 30, 0.13);
}

/* Reportes */

.report-card {
    background-color: #ffffff;
    border: 1px solid rgba(18, 76, 124, 0.22);
    border-radius: 30px;
    padding: 28px;
    min-height: 260px;
    box-shadow: 0 16px 44px rgba(2, 11, 30, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 76, 124, 0.18), transparent 68%);
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.13);
}

.report-card h5 {
    position: relative;
    z-index: 1;
    font-family: var(--admin-font-title, "Playfair Display", serif);
    color: #020B1E;
    font-weight: 900;
}

.report-card p {
    position: relative;
    z-index: 1;
    color: #6B7C8F;
    font-weight: 600;
    line-height: 1.7;
}

/* Estados visuales comunes */

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 900;
}

.status-pill.success {
    background-color: #d1e7dd;
    color: #146c43;
}

.status-pill.warning {
    background-color: #fff3cd;
    color: #8a6500;
}

.status-pill.danger {
    background-color: #f8d7da;
    color: #b02a37;
}

.status-pill.info {
    background-color: #e7f1ff;
    color: #0b5ed7;
}

.status-pill.dark {
    background-color: #020B1E;
    color: #1E73A8;
}

/* Alertas */

.admin-content .alert {
    border: none;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 12px 34px rgba(2, 11, 30, 0.08);
}

/* Formularios largos */

.admin-content hr {
    border-color: rgba(18, 76, 124, 0.25);
    opacity: 1;
}

.admin-content .alert-info {
    background-color: #e8f3ff;
    color: #0b5ed7;
}

/* Tarjetas de resumen antiguas del dashboard si quedan */

.stat-card-small,
.quick-summary,
.payment-list,
.dashboard-action {
    border-radius: 24px;
}

/* Scroll horizontal de tablas */

.table-responsive {
    border-radius: 22px;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(18, 76, 124, 0.55);
    border-radius: 999px;
}

.table-responsive::-webkit-scrollbar-track {
    background-color: rgba(234, 246, 255, 0.8);
}

/* Animación ligera al cargar contenido admin */

.admin-content > * {
    animation: adminFadeUp 0.45s ease both;
}

@keyframes adminFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   TEMA AZUL MARINO GRADIENT - ADMIN
=========================== */

:root {
    --admin-black: #020B1E;
    --admin-brown: #071B3A;
    --admin-gold: #1E73A8;
    --admin-gold-dark: #124C7C;
    --admin-gold-light: #EAF6FF;
    --admin-cream: #EAF6FF;
    --admin-white: #FFFFFF;
    --admin-text: #102A43;
    --admin-muted: #6B7C8F;
    --admin-border: rgba(18, 76, 124, 0.24);
    --admin-shadow: 0 28px 80px rgba(2, 11, 30, 0.22);
    --admin-shadow-soft: 0 16px 44px rgba(2, 11, 30, 0.12);

    --admin-blue-gradient: linear-gradient(180deg, #020B1E 0%, #071B3A 25%, #0B2D57 50%, #124C7C 75%, #1E73A8 100%);
    --admin-blue-gradient-horizontal: linear-gradient(135deg, #020B1E 0%, #071B3A 28%, #0B2D57 58%, #124C7C 82%, #1E73A8 100%);
    --admin-blue-gradient-button: linear-gradient(135deg, #1E73A8 0%, #124C7C 45%, #071B3A 100%);
}

/* ===========================
   LOGIN ADMIN AZUL MARINO
=========================== */

.admin-login-body {
    background:
        linear-gradient(rgba(2, 11, 30, 0.74), rgba(2, 11, 30, 0.88)),
        url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.admin-login-body::before {
    background:
        radial-gradient(circle at 18% 25%, rgba(30, 115, 168, 0.22), transparent 32%),
        radial-gradient(circle at 84% 80%, rgba(234, 246, 255, 0.10), transparent 30%);
}

.login-bg-orb {
    background: radial-gradient(circle, rgba(30, 115, 168, 0.26), transparent 68%);
}

.login-brand-icon,
.login-submit-btn,
.login-card-premium .login-brand-icon {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
    box-shadow: 0 0 42px rgba(30, 115, 168, 0.32);
}

.login-brand-large h1,
.login-info-panel .login-brand-large h1 {
    color: #EAF6FF;
}

.login-mobile-brand h1,
.login-card-header h3 {
    color: #020B1E;
}

.login-card-header p,
.login-options a,
.login-options div i {
    color: #124C7C;
}

.login-card-premium {
    background-color: rgba(255, 253, 248, 0.95);
    border-color: rgba(18, 76, 124, 0.30);
    box-shadow: var(--admin-shadow);
}

.login-feature-item {
    background-color: rgba(234, 246, 255, 0.10);
    border-color: rgba(234, 246, 255, 0.22);
}

.login-feature-item:hover {
    background-color: rgba(234, 246, 255, 0.15);
}

.login-feature-item i {
    background-color: rgba(234, 246, 255, 0.12);
    color: #EAF6FF;
}

.login-input-icon > i {
    color: #124C7C;
}

.login-input-icon .form-control {
    border-color: rgba(18, 76, 124, 0.24);
}

.login-input-icon .form-control:focus {
    border-color: #124C7C;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.16);
}

.login-submit-btn {
    color: #ffffff;
}

.login-submit-btn:hover {
    color: #ffffff;
    box-shadow: 0 20px 48px rgba(18, 76, 124, 0.38);
}

.login-demo-box {
    background-color: rgba(234, 246, 255, 0.72);
    border-color: rgba(18, 76, 124, 0.22);
}

.login-demo-box strong {
    color: #020B1E;
}

/* ===========================
   ADMIN SHELL AZUL MARINO
=========================== */

.admin-shell-body {
    background:
        radial-gradient(circle at top left, rgba(234, 246, 255, 0.78), transparent 34%),
        #F5FAFF;
    color: #102A43;
}

.admin-sidebar {
    background:
        radial-gradient(circle at 20% 10%, rgba(234, 246, 255, 0.12), transparent 34%),
        var(--admin-blue-gradient);
    box-shadow: 20px 0 70px rgba(2, 11, 30, 0.25);
}

.admin-sidebar-logo {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
    box-shadow: 0 0 34px rgba(30, 115, 168, 0.32);
}

.admin-sidebar-brand h4 {
    color: #EAF6FF;
}

.admin-sidebar-brand span,
.admin-user-card span {
    color: rgba(234, 246, 255, 0.68);
}

.admin-user-card {
    background-color: rgba(234, 246, 255, 0.08);
    border-color: rgba(234, 246, 255, 0.18);
}

.admin-user-avatar {
    background-color: rgba(234, 246, 255, 0.12);
    color: #EAF6FF;
}

.admin-sidebar-menu::-webkit-scrollbar-thumb {
    background-color: rgba(234, 246, 255, 0.35);
}

.admin-sidebar-menu a,
.admin-sidebar-footer a {
    color: rgba(255, 255, 255, 0.74);
}

.admin-sidebar-menu a i,
.admin-sidebar-footer a i {
    color: #EAF6FF;
}

.admin-sidebar-menu a:hover,
.admin-sidebar-menu a.active {
    background-color: rgba(234, 246, 255, 0.12);
    color: #ffffff;
}

.admin-sidebar-menu a.active {
    border-color: rgba(234, 246, 255, 0.24);
}

.admin-sidebar-footer {
    border-top-color: rgba(234, 246, 255, 0.14);
}

.admin-sidebar-footer .logout-link,
.admin-sidebar-footer .logout-link i {
    color: #ffb3a8;
}

/* Topbar */

.admin-topbar {
    background-color: rgba(255, 253, 248, 0.9);
    border-bottom-color: rgba(18, 76, 124, 0.18);
    box-shadow: 0 10px 30px rgba(2, 11, 30, 0.04);
}

.admin-topbar p {
    color: #124C7C;
}

.admin-topbar h1 {
    color: #020B1E;
}

.admin-menu-toggle {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
}

.admin-topbar-btn {
    background-color: #ffffff;
    border-color: rgba(18, 76, 124, 0.22);
    color: #102A43;
}

.admin-topbar-btn:hover {
    background-color: #020B1E;
    color: #EAF6FF;
}

.admin-topbar-btn.logout {
    color: #b23b2e;
}

/* ===========================
   DASHBOARD AZUL MARINO
=========================== */

.dashboard-hero-admin {
    background:
        radial-gradient(circle at 14% 28%, rgba(234, 246, 255, 0.16), transparent 34%),
        var(--admin-blue-gradient-horizontal);
    box-shadow: 0 28px 80px rgba(2, 11, 30, 0.20);
}

.dashboard-hero-admin p {
    color: #EAF6FF;
}

.dashboard-hero-admin span {
    color: rgba(255, 255, 255, 0.76);
}

.dashboard-hero-icon {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
    box-shadow: 0 0 45px rgba(30, 115, 168, 0.34);
}

/* KPI cards */

.admin-kpi-card {
    background-color: #FFFFFF;
    border-color: rgba(18, 76, 124, 0.22);
    box-shadow: var(--admin-shadow-soft);
}

.admin-kpi-card::after {
    background: radial-gradient(circle, rgba(30, 115, 168, 0.13), transparent 70%);
}

.admin-kpi-card:hover {
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.14);
}

.admin-kpi-card.kpi-dark {
    background: var(--admin-blue-gradient-horizontal);
    color: #ffffff;
}

.admin-kpi-card.kpi-gold {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(135deg, #EAF6FF, #1E73A8);
}

.admin-kpi-icon {
    background-color: #EAF6FF;
    color: #124C7C;
}

.kpi-dark .admin-kpi-icon {
    background-color: rgba(234, 246, 255, 0.14);
    color: #EAF6FF;
}

.kpi-gold .admin-kpi-icon {
    background-color: rgba(2, 11, 30, 0.10);
    color: #020B1E;
}

.admin-kpi-card span {
    color: #6B7C8F;
}

.kpi-dark span,
.kpi-dark p {
    color: rgba(255, 255, 255, 0.70);
}

.kpi-gold span,
.kpi-gold p {
    color: rgba(2, 11, 30, 0.70);
}

.admin-kpi-card h3 {
    color: #020B1E;
}

.kpi-dark h3 {
    color: #EAF6FF;
}

/* Mini stats */

.admin-mini-stat,
.admin-panel-card,
.admin-summary-card,
.admin-card,
.report-card {
    background-color: #FFFFFF;
    border-color: rgba(18, 76, 124, 0.22);
    box-shadow: var(--admin-shadow-soft);
}

.admin-mini-stat span,
.admin-summary-card span,
.admin-card p,
.report-card p {
    color: #6B7C8F;
}

.admin-mini-stat span i {
    color: #124C7C;
}

.admin-mini-stat strong,
.admin-summary-card strong,
.admin-panel-header h4,
.admin-card h5,
.report-card h5 {
    color: #020B1E;
}

.admin-summary-card > i,
.quick-actions-admin i {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
}

/* Paneles y links */

.admin-panel-header p {
    color: #124C7C;
}

.admin-panel-link {
    color: #124C7C;
}

.admin-panel-link:hover {
    color: #020B1E;
}

/* Tablas */

.admin-premium-table thead th,
.admin-table thead th,
.admin-content .table thead th {
    background-color: #EAF6FF;
    color: #020B1E;
}

.admin-premium-table tbody td,
.admin-table tbody td,
.admin-content .table tbody td {
    border-color: rgba(18, 76, 124, 0.14);
    color: #102A43;
}

.admin-premium-table tbody tr:hover,
.admin-table tbody tr:hover,
.admin-content .table tbody tr:hover {
    background-color: rgba(234, 246, 255, 0.56);
}

.admin-table strong,
.admin-content .table strong {
    color: #020B1E;
}

.admin-table small,
.admin-content .table small {
    color: #6B7C8F;
}

/* Quick actions */

.quick-actions-admin a {
    background-color: #EAF6FF;
    border-color: rgba(18, 76, 124, 0.18);
    color: #102A43;
}

.quick-actions-admin a:hover {
    background-color: #020B1E;
    color: #EAF6FF;
}

/* Payments */

.admin-payment-item {
    background-color: #EAF6FF;
    border-color: rgba(18, 76, 124, 0.16);
}

.admin-payment-icon {
    background-color: #FFFFFF;
    color: #124C7C;
}

.admin-payment-item strong {
    color: #020B1E;
}

.admin-payment-item span {
    color: #6B7C8F;
}

.admin-payment-item small {
    color: #124C7C;
}

/* ===========================
   FORMULARIOS Y BOTONES ADMIN
=========================== */

.admin-content .form-label {
    color: #020B1E;
}

.admin-content .form-control,
.admin-content .form-select {
    border-color: rgba(18, 76, 124, 0.24);
    background-color: #ffffff;
    color: #102A43;
}

.admin-content .form-control:hover,
.admin-content .form-select:hover {
    border-color: rgba(30, 115, 168, 0.52);
}

.admin-content .form-control:focus,
.admin-content .form-select:focus {
    border-color: #124C7C;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.16);
}

.btn-admin-primary {
    background: var(--admin-blue-gradient-button);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 76, 124, 0.28);
}

.btn-admin-primary:hover {
    color: #ffffff;
    box-shadow: 0 20px 46px rgba(2, 11, 30, 0.34);
}

.admin-content .btn-outline-primary {
    border-color: #124C7C;
    color: #124C7C;
}

.admin-content .btn-outline-primary:hover {
    background-color: #124C7C;
    border-color: #124C7C;
    color: #ffffff;
}

.admin-content .btn-outline-secondary:hover {
    background-color: #020B1E;
    border-color: #020B1E;
    color: #EAF6FF;
}

/* Badges */

.admin-badge.info {
    background-color: #EAF6FF;
    color: #124C7C;
}

.admin-badge.dark {
    background-color: #020B1E;
    color: #EAF6FF;
}

/* Reportes */

.report-card::before {
    background: radial-gradient(circle, rgba(30, 115, 168, 0.14), transparent 68%);
}

.report-card:hover {
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.14);
}

/* Imágenes */

.room-thumb,
.room-preview {
    border-color: rgba(18, 76, 124, 0.28);
    box-shadow: 0 10px 26px rgba(2, 11, 30, 0.12);
}

.room-thumb-placeholder {
    background:
        radial-gradient(circle at top left, rgba(30, 115, 168, 0.18), transparent 40%),
        #EAF6FF;
    color: #124C7C;
    border-color: rgba(18, 76, 124, 0.22);
}

/* Scroll tablas */

.table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(18, 76, 124, 0.55);
}

.table-responsive::-webkit-scrollbar-track {
    background-color: rgba(234, 246, 255, 0.8);
}

/* Overlay móvil */

.admin-sidebar-overlay {
    background-color: rgba(2, 11, 30, 0.56);
}

/* ===========================
   LIMPIEZA FINAL AZUL MARINO - ADMIN
=========================== */

:root {
    --admin-cream: #EAF6FF;
    --admin-white: #FFFFFF;
    --admin-gold: #1E73A8;
    --admin-gold-dark: #124C7C;
    --admin-gold-light: #DDEEFF;
}

.admin-shell-body {
    background-color: #F4FAFF !important;
}

.login-card-premium,
.admin-kpi-card,
.admin-mini-stat,
.admin-panel-card,
.admin-summary-card,
.admin-card,
.report-card {
    background-color: #FFFFFF !important;
    border-color: rgba(18, 76, 124, 0.20) !important;
}

.admin-payment-item,
.quick-actions-admin a,
.admin-premium-table thead th,
.admin-table thead th,
.admin-content .table thead th,
.login-demo-box {
    background-color: #EAF6FF !important;
}

.admin-sidebar,
.dashboard-hero-admin,
.login-submit-btn,
.btn-admin-primary,
.admin-sidebar-logo,
.dashboard-hero-icon,
.admin-summary-card > i,
.quick-actions-admin i {
    background:
        linear-gradient(135deg, #020B1E, #071B3A, #0B2D57, #124C7C) !important;
    color: #FFFFFF !important;
}

.admin-content .form-control,
.admin-content .form-select {
    background-color: #FFFFFF !important;
    border-color: rgba(18, 76, 124, 0.24) !important;
}

.admin-content .form-control:focus,
.admin-content .form-select:focus {
    border-color: #124C7C !important;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.16) !important;
}

/* ===========================
   GUARDIA FINAL ADMIN AZUL MARINO
   Sin crema/dorado de marca
=========================== */

:root {
    --admin-dark: #020B1E;
    --admin-dark-2: #071B3A;
    --admin-gold: #1E73A8;
    --admin-gold-dark: #124C7C;
    --admin-gold-light: #EAF6FF;
    --admin-light: #F4FAFF;
    --admin-cream: #EAF6FF;
    --admin-white: #FFFFFF;
    --admin-text: #102A43;
    --admin-muted: #6B7C8F;
    --admin-border: rgba(18, 76, 124, 0.22);

    --admin-blue-gradient: linear-gradient(180deg, #020B1E 0%, #071B3A 25%, #0B2D57 50%, #124C7C 75%, #1E73A8 100%);
    --admin-blue-gradient-horizontal: linear-gradient(135deg, #020B1E 0%, #071B3A 28%, #0B2D57 58%, #124C7C 82%, #1E73A8 100%);
    --admin-blue-gradient-button: linear-gradient(135deg, #1E73A8 0%, #124C7C 45%, #071B3A 100%);
}

body,
.admin-shell-body,
.admin-content {
    background-color: #F4FAFF !important;
    color: #102A43;
}

.login-card,
.login-card-premium,
.admin-card,
.admin-panel-card,
.admin-kpi-card,
.admin-mini-stat,
.admin-summary-card,
.report-card,
.admin-content .card,
.admin-content .modal-content {
    background-color: #FFFFFF !important;
    border-color: rgba(18, 76, 124, 0.20) !important;
}

.admin-table thead th,
.admin-premium-table thead th,
.admin-content .table thead th,
.quick-actions-admin a,
.admin-payment-item,
.login-demo-box,
.admin-content .bg-light {
    background-color: #EAF6FF !important;
}

.admin-sidebar,
.dashboard-hero-admin,
.login-submit-btn,
.btn-login,
.btn-admin-primary,
.admin-sidebar-logo,
.dashboard-hero-icon,
.admin-summary-card > i,
.quick-actions-admin i {
    background: linear-gradient(135deg, #020B1E, #071B3A, #0B2D57, #124C7C) !important;
    color: #FFFFFF !important;
    border-color: transparent !important;
}

.admin-content .form-control,
.admin-content .form-select,
.form-control,
.form-select {
    background-color: #FFFFFF !important;
    border-color: rgba(18, 76, 124, 0.24) !important;
    color: #102A43 !important;
}

.admin-content .form-control:focus,
.admin-content .form-select:focus,
.form-control:focus,
.form-select:focus {
    border-color: #124C7C !important;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.16) !important;
}

.admin-content a,
.admin-panel-link,
.login-options a {
    color: #124C7C;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(18, 76, 124, 0.55);
}

.table-responsive::-webkit-scrollbar-track {
    background-color: #EAF6FF;
}

/* ===========================
   PANTALLA REPORTES PREMIUM
=========================== */

.reports-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 38px;
    background:
        radial-gradient(circle at 16% 20%, rgba(234, 246, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #020B1E 0%, #071B3A 28%, #0B2D57 58%, #124C7C 82%, #1E73A8 100%);
    color: #FFFFFF;
    box-shadow: 0 28px 80px rgba(2, 11, 30, 0.20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.reports-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(234, 246, 255, 0.16), transparent 68%);
}

.reports-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.reports-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(234, 246, 255, 0.10);
    border: 1px solid rgba(234, 246, 255, 0.22);
    color: #EAF6FF;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.reports-hero h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.reports-hero p {
    max-width: 700px;
    color: rgba(234, 246, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 24px;
}

.reports-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.reports-hero-actions .btn-outline-light {
    border-radius: 999px;
    font-weight: 900;
    padding: 11px 22px;
    border-color: rgba(234, 246, 255, 0.55);
    color: #FFFFFF;
}

.reports-hero-actions .btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #020B1E;
}

.reports-hero-icon {
    position: relative;
    z-index: 1;
    width: 112px;
    height: 112px;
    border-radius: 34px;
    background: rgba(234, 246, 255, 0.12);
    border: 1px solid rgba(234, 246, 255, 0.22);
    color: #EAF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 28px rgba(234, 246, 255, 0.08);
}

.report-mini-stat {
    height: 100%;
    background-color: #FFFFFF;
    border: 1px solid rgba(18, 76, 124, 0.20);
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(2, 11, 30, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s ease;
}

.report-mini-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(2, 11, 30, 0.12);
}

.report-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1E73A8, #124C7C, #071B3A);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.report-mini-stat span {
    display: block;
    color: #6B7C8F;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.report-mini-stat strong {
    color: #020B1E;
    font-size: 1.05rem;
    font-weight: 900;
}

.reports-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reports-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background-color: #EAF6FF;
    color: #124C7C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.report-card-premium {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    background-color: #FFFFFF;
    border: 1px solid rgba(18, 76, 124, 0.20);
    border-radius: 30px;
    box-shadow: 0 14px 40px rgba(2, 11, 30, 0.08);
    transition: all 0.35s ease;
}

.report-card-premium::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 115, 168, 0.13), transparent 68%);
}

.report-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.14);
}

.featured-report-card {
    border-color: rgba(30, 115, 168, 0.42);
    box-shadow: 0 24px 70px rgba(18, 76, 124, 0.15);
}

.report-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.report-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1E73A8, #124C7C, #071B3A);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 16px 36px rgba(18, 76, 124, 0.24);
}

.report-card-tag {
    background-color: #EAF6FF;
    color: #124C7C;
    border: 1px solid rgba(18, 76, 124, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.report-card-body {
    position: relative;
    z-index: 1;
}

.report-card-body h5,
.report-card-premium h5 {
    color: #020B1E;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.report-card-body p,
.report-card-premium p {
    color: #6B7C8F;
    line-height: 1.7;
    margin-bottom: 0;
}

.report-card-list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.report-card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #102A43;
    font-size: 0.87rem;
    font-weight: 750;
}

.report-card-list i {
    color: #124C7C;
}

.report-card-premium .btn {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.reports-bottom-note {
    background-color: #EAF6FF;
    border: 1px solid rgba(18, 76, 124, 0.18);
    border-radius: 24px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.reports-bottom-note div {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1E73A8, #124C7C, #071B3A);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reports-bottom-note p {
    color: #6B7C8F;
    font-weight: 650;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .reports-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .reports-hero-icon {
        width: 88px;
        height: 88px;
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .reports-hero {
        padding: 28px;
        border-radius: 28px;
    }

    .reports-hero-actions .btn {
        width: 100%;
    }

    .report-card-premium {
        padding: 22px;
    }
}

/* ===========================
   MODO OSCURO ADMIN
=========================== */

.admin-theme-toggle {
    min-width: 118px;
}

.admin-theme-toggle i {
    color: inherit;
}

body.admin-dark-mode {
    background:
        radial-gradient(circle at top left, rgba(30, 115, 168, 0.12), transparent 32%),
        #020B1E !important;
    color: #EAF6FF !important;
}

/* Fondo general */

body.admin-dark-mode .admin-main,
body.admin-dark-mode .admin-content,
body.admin-dark-mode .admin-shell-body {
    background:
        radial-gradient(circle at top right, rgba(30, 115, 168, 0.10), transparent 34%),
        #020B1E !important;
    color: #EAF6FF !important;
}

/* Topbar */

body.admin-dark-mode .admin-topbar {
    background-color: rgba(7, 27, 58, 0.92) !important;
    border-bottom-color: rgba(234, 246, 255, 0.12) !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22) !important;
}

body.admin-dark-mode .admin-topbar h1,
body.admin-dark-mode .admin-topbar strong {
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-topbar p,
body.admin-dark-mode .admin-topbar span {
    color: rgba(234, 246, 255, 0.72) !important;
}

body.admin-dark-mode .admin-topbar-btn {
    background-color: rgba(234, 246, 255, 0.08) !important;
    border-color: rgba(234, 246, 255, 0.16) !important;
    color: #EAF6FF !important;
}

body.admin-dark-mode .admin-topbar-btn:hover {
    background-color: #EAF6FF !important;
    color: #020B1E !important;
}

/* Sidebar se mantiene azul marino, solo se intensifica */

body.admin-dark-mode .admin-sidebar {
    background:
        radial-gradient(circle at 20% 10%, rgba(234, 246, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #020B1E 0%, #071B3A 34%, #0B2D57 68%, #124C7C 100%) !important;
    box-shadow: 20px 0 70px rgba(0, 0, 0, 0.42) !important;
}

/* Tarjetas principales */

body.admin-dark-mode .admin-card,
body.admin-dark-mode .admin-kpi-card,
body.admin-dark-mode .admin-mini-stat,
body.admin-dark-mode .admin-panel-card,
body.admin-dark-mode .admin-summary-card,
body.admin-dark-mode .report-card,
body.admin-dark-mode .report-card-premium,
body.admin-dark-mode .report-mini-stat,
body.admin-dark-mode .reports-info-card,
body.admin-dark-mode .reports-bottom-note {
    background-color: #071B3A !important;
    border-color: rgba(234, 246, 255, 0.12) !important;
    color: #EAF6FF !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26) !important;
}

body.admin-dark-mode .admin-card:hover,
body.admin-dark-mode .report-card-premium:hover,
body.admin-dark-mode .admin-kpi-card:hover {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34) !important;
}

/* Títulos y textos */

body.admin-dark-mode .admin-card h1,
body.admin-dark-mode .admin-card h2,
body.admin-dark-mode .admin-card h3,
body.admin-dark-mode .admin-card h4,
body.admin-dark-mode .admin-card h5,
body.admin-dark-mode .admin-panel-header h4,
body.admin-dark-mode .admin-summary-card strong,
body.admin-dark-mode .admin-mini-stat strong,
body.admin-dark-mode .report-card h5,
body.admin-dark-mode .report-card-premium h5,
body.admin-dark-mode .report-card-body h5,
body.admin-dark-mode .report-mini-stat strong {
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-card p,
body.admin-dark-mode .admin-panel-header p,
body.admin-dark-mode .admin-summary-card span,
body.admin-dark-mode .admin-mini-stat span,
body.admin-dark-mode .report-card p,
body.admin-dark-mode .report-card-premium p,
body.admin-dark-mode .report-card-body p,
body.admin-dark-mode .reports-bottom-note p,
body.admin-dark-mode .report-mini-stat span {
    color: rgba(234, 246, 255, 0.72) !important;
}

/* KPI especiales */

body.admin-dark-mode .admin-kpi-card h3 {
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-kpi-card span,
body.admin-dark-mode .admin-kpi-card p {
    color: rgba(234, 246, 255, 0.70) !important;
}

body.admin-dark-mode .admin-kpi-icon,
body.admin-dark-mode .admin-payment-icon,
body.admin-dark-mode .reports-info-icon {
    background-color: rgba(234, 246, 255, 0.10) !important;
    color: #EAF6FF !important;
}

/* Tablas */

body.admin-dark-mode .table,
body.admin-dark-mode .admin-table,
body.admin-dark-mode .admin-premium-table {
    color: #EAF6FF !important;
}

body.admin-dark-mode .admin-premium-table thead th,
body.admin-dark-mode .admin-table thead th,
body.admin-dark-mode .admin-content .table thead th {
    background-color: #0B2D57 !important;
    color: #FFFFFF !important;
    border-color: rgba(234, 246, 255, 0.14) !important;
}

body.admin-dark-mode .admin-premium-table tbody td,
body.admin-dark-mode .admin-table tbody td,
body.admin-dark-mode .admin-content .table tbody td {
    background-color: #071B3A !important;
    border-color: rgba(234, 246, 255, 0.10) !important;
    color: rgba(234, 246, 255, 0.86) !important;
}

body.admin-dark-mode .admin-premium-table tbody tr:hover,
body.admin-dark-mode .admin-table tbody tr:hover,
body.admin-dark-mode .admin-content .table tbody tr:hover {
    background-color: rgba(30, 115, 168, 0.16) !important;
}

body.admin-dark-mode .admin-table strong,
body.admin-dark-mode .admin-content .table strong {
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-table small,
body.admin-dark-mode .admin-content .table small {
    color: rgba(234, 246, 255, 0.62) !important;
}

/* Formularios */

body.admin-dark-mode .admin-content .form-label,
body.admin-dark-mode .form-label {
    color: #EAF6FF !important;
}

body.admin-dark-mode .admin-content .form-control,
body.admin-dark-mode .admin-content .form-select,
body.admin-dark-mode .form-control,
body.admin-dark-mode .form-select {
    background-color: #0B2D57 !important;
    border-color: rgba(234, 246, 255, 0.18) !important;
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-content .form-control::placeholder,
body.admin-dark-mode .form-control::placeholder {
    color: rgba(234, 246, 255, 0.48) !important;
}

body.admin-dark-mode .admin-content .form-control:focus,
body.admin-dark-mode .admin-content .form-select:focus,
body.admin-dark-mode .form-control:focus,
body.admin-dark-mode .form-select:focus {
    background-color: #071B3A !important;
    border-color: #1E73A8 !important;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.22) !important;
}

/* Botones secundarios */

body.admin-dark-mode .btn-outline-secondary,
body.admin-dark-mode .btn-outline-primary {
    border-color: rgba(234, 246, 255, 0.28) !important;
    color: #EAF6FF !important;
}

body.admin-dark-mode .btn-outline-secondary:hover,
body.admin-dark-mode .btn-outline-primary:hover {
    background-color: #EAF6FF !important;
    border-color: #EAF6FF !important;
    color: #020B1E !important;
}

/* Reportes */

body.admin-dark-mode .report-card-tag {
    background-color: rgba(234, 246, 255, 0.10) !important;
    color: #EAF6FF !important;
    border-color: rgba(234, 246, 255, 0.16) !important;
}

body.admin-dark-mode .report-card-list li {
    color: rgba(234, 246, 255, 0.84) !important;
}

body.admin-dark-mode .report-card-list i {
    color: #7ED9FF !important;
}

body.admin-dark-mode .report-mini-icon,
body.admin-dark-mode .report-card-icon,
body.admin-dark-mode .reports-bottom-note div {
    background: linear-gradient(135deg, #1E73A8, #124C7C, #071B3A) !important;
    color: #FFFFFF !important;
}

/* Pagos y quick actions */

body.admin-dark-mode .admin-payment-item,
body.admin-dark-mode .quick-actions-admin a {
    background-color: #0B2D57 !important;
    border-color: rgba(234, 246, 255, 0.12) !important;
    color: #EAF6FF !important;
}

body.admin-dark-mode .admin-payment-item strong,
body.admin-dark-mode .quick-actions-admin a strong {
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-payment-item span,
body.admin-dark-mode .admin-payment-item small {
    color: rgba(234, 246, 255, 0.70) !important;
}

body.admin-dark-mode .quick-actions-admin a:hover {
    background-color: #124C7C !important;
    color: #FFFFFF !important;
}

/* Badges */

body.admin-dark-mode .badge,
body.admin-dark-mode .admin-badge {
    border-color: rgba(234, 246, 255, 0.14) !important;
}

/* Imágenes */

body.admin-dark-mode .room-thumb-placeholder,
body.admin-dark-mode .room-preview {
    background-color: #0B2D57 !important;
    border-color: rgba(234, 246, 255, 0.16) !important;
    color: #EAF6FF !important;
}

/* Scroll */

body.admin-dark-mode .table-responsive::-webkit-scrollbar-track {
    background-color: #071B3A !important;
}

body.admin-dark-mode .table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(234, 246, 255, 0.26) !important;
}

/* ===========================
   SELECTS PREMIUM - ADMIN
=========================== */

.admin-content .choices {
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.admin-content .choices__inner {
    min-height: 52px;
    background-color: #FFFFFF !important;
    border: 1px solid rgba(18, 76, 124, 0.24) !important;
    border-radius: 18px !important;
    padding: 10px 46px 10px 15px !important;
    color: #102A43 !important;
    font-weight: 650;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.admin-content .choices.is-focused .choices__inner,
.admin-content .choices.is-open .choices__inner {
    border-color: #124C7C !important;
    box-shadow: 0 0 0 0.22rem rgba(30, 115, 168, 0.16) !important;
}

.admin-content .choices[data-type*=select-one]::after {
    border-color: #124C7C transparent transparent transparent !important;
    right: 18px !important;
    margin-top: -2px !important;
}

.admin-content .choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #124C7C transparent !important;
    margin-top: -7px !important;
}

.admin-content .choices__list--single {
    padding: 4px 16px 4px 4px !important;
}

.admin-content .choices__list--dropdown,
.admin-content .choices__list[aria-expanded] {
    margin-top: 8px !important;
    background-color: #FFFFFF !important;
    border: 1px solid rgba(18, 76, 124, 0.22) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 22px 60px rgba(2, 11, 30, 0.18) !important;
    z-index: 99999 !important;
}

.admin-content .choices__list--dropdown .choices__item,
.admin-content .choices__list[aria-expanded] .choices__item {
    padding: 12px 16px !important;
    color: #102A43 !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.admin-content .choices__list--dropdown .choices__item--selectable.is-highlighted,
.admin-content .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #EAF6FF !important;
    color: #124C7C !important;
}

.admin-content .choices__item--choice.is-selected {
    background-color: #124C7C !important;
    color: #FFFFFF !important;
}

/* Modo oscuro admin */

body.admin-dark-mode .admin-content .choices__inner {
    background-color: #0B2D57 !important;
    border-color: rgba(234, 246, 255, 0.18) !important;
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-content .choices__list--dropdown,
body.admin-dark-mode .admin-content .choices__list[aria-expanded] {
    background-color: #071B3A !important;
    border-color: rgba(234, 246, 255, 0.16) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36) !important;
}

body.admin-dark-mode .admin-content .choices__list--dropdown .choices__item,
body.admin-dark-mode .admin-content .choices__list[aria-expanded] .choices__item {
    color: #EAF6FF !important;
}

body.admin-dark-mode .admin-content .choices__list--dropdown .choices__item--selectable.is-highlighted,
body.admin-dark-mode .admin-content .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #124C7C !important;
    color: #FFFFFF !important;
}

body.admin-dark-mode .admin-content .choices[data-type*=select-one]::after {
    border-color: #EAF6FF transparent transparent transparent !important;
}

body.admin-dark-mode .admin-content .choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #EAF6FF transparent !important;
}

/* ===========================
   CALENDARIO PREMIUM - ADMIN
=========================== */

.admin-content .bella-date-input {
    cursor: pointer;
}

.flatpickr-calendar {
    border: 1px solid rgba(18, 76, 124, 0.22) !important;
    border-radius: 24px !important;
    box-shadow: 0 28px 80px rgba(2, 11, 30, 0.22) !important;
    overflow: hidden !important;
    font-family: "Inter", sans-serif !important;
    z-index: 99999 !important;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
    display: none !important;
}

.flatpickr-months {
    background:
        radial-gradient(circle at 20% 20%, rgba(234, 246, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #020B1E, #071B3A, #0B2D57, #124C7C) !important;
    padding: 12px 10px 8px !important;
}

.flatpickr-month {
    color: #FFFFFF !important;
    height: 48px !important;
}

.flatpickr-current-month {
    color: #FFFFFF !important;
    font-weight: 900 !important;
    padding-top: 6px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #FFFFFF !important;
    font-weight: 900 !important;
    background-color: transparent !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    top: 15px !important;
    color: #EAF6FF !important;
    fill: #EAF6FF !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

.flatpickr-weekdays {
    background-color: #0B2D57 !important;
    height: 42px !important;
}

span.flatpickr-weekday {
    color: #EAF6FF !important;
    font-weight: 900 !important;
    font-size: 0.78rem !important;
    text-transform: uppercase;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    background-color: #FFFFFF !important;
}

.dayContainer {
    padding: 12px !important;
}

.flatpickr-day {
    border-radius: 14px !important;
    color: #102A43 !important;
    font-weight: 750 !important;
    border: none !important;
    margin: 2px !important;
    max-width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
}

.flatpickr-day:hover {
    background-color: #EAF6FF !important;
    color: #124C7C !important;
}

.flatpickr-day.today {
    background-color: #EAF6FF !important;
    color: #124C7C !important;
    border: 1px solid rgba(18, 76, 124, 0.24) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, #1E73A8, #124C7C, #071B3A) !important;
    color: #FFFFFF !important;
    box-shadow: 0 10px 24px rgba(18, 76, 124, 0.28) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(107, 124, 143, 0.45) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(107, 124, 143, 0.35) !important;
    background-color: transparent !important;
    cursor: not-allowed !important;
}

/* Modo oscuro admin */

body.admin-dark-mode .flatpickr-calendar {
    background-color: #071B3A !important;
    border-color: rgba(234, 246, 255, 0.16) !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42) !important;
}

body.admin-dark-mode .flatpickr-innerContainer,
body.admin-dark-mode .flatpickr-rContainer,
body.admin-dark-mode .flatpickr-days {
    background-color: #071B3A !important;
}

body.admin-dark-mode .flatpickr-day {
    color: #EAF6FF !important;
}

body.admin-dark-mode .flatpickr-day:hover {
    background-color: #124C7C !important;
    color: #FFFFFF !important;
}

body.admin-dark-mode .flatpickr-day.today {
    background-color: rgba(234, 246, 255, 0.10) !important;
    color: #EAF6FF !important;
    border-color: rgba(234, 246, 255, 0.20) !important;
}

body.admin-dark-mode .flatpickr-day.prevMonthDay,
body.admin-dark-mode .flatpickr-day.nextMonthDay {
    color: rgba(234, 246, 255, 0.35) !important;
}

body.admin-dark-mode .flatpickr-day.flatpickr-disabled,
body.admin-dark-mode .flatpickr-day.flatpickr-disabled:hover {
    color: rgba(234, 246, 255, 0.22) !important;
}

/* ===========================
   FIX CALENDARIO MES ESTÁTICO ADMIN
=========================== */

.flatpickr-current-month .cur-month {
    color: #FFFFFF !important;
    font-weight: 900 !important;
}

.flatpickr-current-month input.cur-year {
    color: #FFFFFF !important;
    font-weight: 900 !important;
    background: transparent !important;
}

.flatpickr-current-month {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}

.flatpickr-monthDropdown-months {
    display: none !important;
}

/* ===========================
   HABITACIONES - MAPA VISUAL 2D
=========================== */

.room-map-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.room-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EAF6FF;
    color: #124C7C;
    border: 1px solid rgba(18, 76, 124, 0.18);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.room-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 22px;
}

.room-visual-card {
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 1px solid rgba(18, 76, 124, 0.18);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(2, 11, 30, 0.08);
    transition: all 0.3s ease;
}

.room-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(2, 11, 30, 0.14);
}

.room-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
}

.room-status-disponible::before {
    background: radial-gradient(circle at top right, #1E73A8, transparent 52%);
}

.room-status-ocupada::before {
    background: radial-gradient(circle at top right, #DC3545, transparent 52%);
}

.room-status-reservada::before {
    background: radial-gradient(circle at top right, #E5A84B, transparent 52%);
}

.room-status-mantenimiento::before {
    background: radial-gradient(circle at top right, #6B7C8F, transparent 52%);
}

.room-visual-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.room-visual-top span {
    display: block;
    color: #6B7C8F;
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.room-visual-top strong {
    display: block;
    color: #020B1E;
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: 2px;
}

.room-state-pill {
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.7rem !important;
    font-weight: 900 !important;
    white-space: nowrap;
}

.room-status-disponible .room-state-pill {
    background-color: #EAF6FF;
    color: #124C7C;
}

.room-status-ocupada .room-state-pill {
    background-color: rgba(220, 53, 69, 0.12);
    color: #B02A37;
}

.room-status-reservada .room-state-pill {
    background-color: rgba(229, 168, 75, 0.16);
    color: #9A640D;
}

.room-status-mantenimiento .room-state-pill {
    background-color: rgba(107, 124, 143, 0.14);
    color: #4F5E6B;
}

.room-plan {
    position: relative;
    height: 178px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(234, 246, 255, 0.92), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(
            45deg,
            rgba(18, 76, 124, 0.035) 0,
            rgba(18, 76, 124, 0.035) 8px,
            transparent 8px,
            transparent 16px
        );
    border: 2px solid rgba(18, 76, 124, 0.18);
    overflow: hidden;
    margin-bottom: 16px;
}

.room-wall {
    position: absolute;
    background-color: rgba(2, 11, 30, 0.16);
    border-radius: 999px;
}

.room-wall-top {
    left: 18px;
    right: 18px;
    top: 12px;
    height: 4px;
}

.room-wall-bottom {
    left: 18px;
    right: 74px;
    bottom: 12px;
    height: 4px;
}

.room-wall-left {
    left: 12px;
    top: 18px;
    bottom: 18px;
    width: 4px;
}

.room-wall-right {
    right: 12px;
    top: 18px;
    bottom: 18px;
    width: 4px;
}

.room-bed {
    position: absolute;
    background: linear-gradient(145deg, #FFFFFF, #DCEEFF);
    border: 2px solid rgba(18, 76, 124, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(2, 11, 30, 0.08);
}

.room-bed span {
    position: absolute;
    top: 8px;
    width: 27px;
    height: 18px;
    border-radius: 9px;
    background-color: #EAF6FF;
    border: 1px solid rgba(18, 76, 124, 0.12);
}

.room-bed-large {
    left: 32px;
    top: 38px;
    width: 92px;
    height: 76px;
}

.room-bed-large span:nth-child(1) {
    left: 10px;
}

.room-bed-large span:nth-child(2) {
    right: 10px;
}

.room-bed-small {
    width: 58px;
    height: 84px;
}

.room-bed-small span {
    left: 12px;
    width: 30px;
}

.room-bed-one {
    left: 34px;
    top: 36px;
}

.room-bed-two {
    left: 102px;
    top: 36px;
}

.room-bed-extra {
    right: 38px;
    bottom: 30px;
    height: 58px;
    width: 76px;
}

.room-tv {
    position: absolute;
    right: 34px;
    top: 38px;
    width: 54px;
    height: 31px;
    border-radius: 8px;
    background: linear-gradient(135deg, #020B1E, #0B2D57);
    box-shadow: 0 8px 18px rgba(2, 11, 30, 0.18);
}

.room-tv::after {
    content: "";
    position: absolute;
    left: 19px;
    bottom: -8px;
    width: 16px;
    height: 8px;
    background-color: #0B2D57;
    border-radius: 0 0 6px 6px;
}

.room-dresser {
    position: absolute;
    right: 33px;
    top: 86px;
    width: 56px;
    height: 26px;
    border-radius: 9px;
    background: linear-gradient(135deg, #B8D8F0, #EAF6FF);
    border: 1px solid rgba(18, 76, 124, 0.15);
}

.room-dresser::before,
.room-dresser::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(18, 76, 124, 0.35);
}

.room-dresser::before {
    left: 16px;
}

.room-dresser::after {
    right: 16px;
}

.room-rug {
    position: absolute;
    left: 74px;
    bottom: 32px;
    width: 78px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 115, 168, 0.22), rgba(30, 115, 168, 0.06));
}

.room-door {
    position: absolute;
    right: 27px;
    bottom: 12px;
    width: 38px;
    height: 42px;
    border-radius: 42px 42px 0 0;
    border: 4px solid rgba(18, 76, 124, 0.35);
    border-bottom: none;
    transform: rotate(-34deg);
    transform-origin: bottom right;
}

.room-window {
    position: absolute;
    left: 48px;
    top: 12px;
    width: 54px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1E73A8, #EAF6FF, #1E73A8);
}

.room-visual-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(18, 76, 124, 0.12);
    padding-top: 14px;
}

.room-visual-footer span {
    display: block;
    color: #6B7C8F;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.room-visual-footer strong {
    display: block;
    color: #102A43;
    font-size: 0.9rem;
    font-weight: 900;
    margin-top: 3px;
}

.empty-room-map {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    border: 1px dashed rgba(18, 76, 124, 0.28);
    border-radius: 26px;
    background-color: #F4FAFF;
    color: #6B7C8F;
}

.empty-room-map i {
    font-size: 2.4rem;
    color: #124C7C;
    margin-bottom: 12px;
}

.empty-room-map p {
    margin-bottom: 0;
    font-weight: 800;
}

/* ===========================
   FIX FONDO ENCABEZADO ADMIN
   Quitar tono crema
=========================== */

.admin-topbar,
.admin-header,
.admin-page-header,
.admin-content-header {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(18, 76, 124, 0.14) !important;
}

/* ===========================
   LOGO REAL ADMIN
=========================== */

.admin-real-logo-box {
    overflow: hidden !important;
    background: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 12px 28px rgba(2, 11, 30, 0.28) !important;
}

.admin-real-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 50% !important;
}

/* Logo pequeño del encabezado admin */
.admin-topbar-title-box {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.admin-topbar-logo {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    border: 2px solid rgba(18, 76, 124, 0.18);
    box-shadow: 0 10px 22px rgba(2, 11, 30, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-topbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Modo oscuro */
body.admin-dark .admin-topbar-logo {
    background: #FFFFFF;
    border-color: rgba(234, 246, 255, 0.24);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

@media (max-width: 576px) {
    .admin-topbar-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .admin-topbar-title-box {
        gap: 10px !important;
    }
}

/* ===========================
   LOGO REAL LOGIN
=========================== */

.login-real-logo-box {
    overflow: hidden !important;
    background: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 16px 34px rgba(2, 11, 30, 0.26) !important;
}

.login-real-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 50% !important;
}

.login-card-logo-box {
    width: 92px;
    height: 92px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    border: 3px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 18px 40px rgba(2, 11, 30, 0.18),
        0 0 0 8px rgba(18, 76, 124, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ajuste visual del encabezado del login */
.login-card-header {
    text-align: center;
}

.login-card-header p {
    margin-top: 4px;
}

/* Mejor presencia del logo grande lateral */
.login-brand-large .login-brand-icon {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
}

.login-mobile-brand .login-brand-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
}

@media (max-width: 576px) {
    .login-card-logo-box {
        width: 78px;
        height: 78px;
        margin-bottom: 14px;
    }
}