body{
    background:#F4F7FB;
    font-family:Montserrat,sans-serif;
}

.apd-hero{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:center;

    background:linear-gradient(135deg,#0D2B6C 0%, #18439F 100%);
    color:#fff;

    border-radius:24px;

    padding:35px 40px;

    margin-bottom:30px;

    box-shadow:0 20px 50px rgba(13,43,108,.20);

    position:relative;
    overflow:hidden;
}

.apd-hero-badge{

    display:inline-block;

    background:#7CC70A;

    color:#0D2B6C;

    font-weight:700;

    padding:8px 18px;

    border-radius:999px;

    margin-bottom:20px;

}

.apd-hero h1{

    font-size:42px;

    margin:0 0 15px;

}

.apd-hero p{

    max-width:700px;

    opacity:.92;

    font-size:18px;

    line-height:1.7;

}

.apd-buttons{

    margin-top:35px;

    display:flex;

    gap:15px;

}

.apd-btn{

    padding:15px 26px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

}

.apd-btn-primary{

    background:#7CC70A;

    color:#0D2B6C;

}

.apd-btn-secondary{

    background:white;

    color:#0D2B6C;

}

/* ==========================================================
   SIDEBAR APD
========================================================== */
/*
.user-dashboard-left{
    background:#0D2B6C;
    width:290px;
    border-radius:20px;
    margin:20px;
    padding:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.board-panel-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.board-panel-menu li{
    margin-bottom:8px;
}

.board-panel-menu li a{
    display:flex;
    align-items:center;
    padding:14px 18px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:all .25s ease;
}

.board-panel-menu li a:hover{
    background:#7CC70A;
    color:#0D2B6C;
}

.board-panel-item-active a{
    background:#7CC70A !important;
    color:#0D2B6C !important;
}
*/






/* ==================================================
   HEADER APD
================================================== */

.apd-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#ffffff;

    border-radius:18px;

    padding:25px 30px;

    margin-bottom:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.apd-header h1{

    margin:0;

    color:#0D2B6C;

    font-size:32px;

}

.apd-header p{

    margin-top:8px;

    color:#6b7280;

}

.apd-header-right{

    display:flex;

    gap:15px;

}

.apd-icon-button{

    width:50px;

    height:50px;

    border:none;

    border-radius:14px;

    background:#F4F7FB;

    cursor:pointer;

    font-size:20px;

    transition:.25s;

}

.apd-icon-button:hover{

    background:#0D2B6C;

    color:white;

}

/* ==================================================
   LAYOUT APD
================================================== */

.apd-dashboard{
    display:flex;
    min-height:100vh;
    background:#F4F7FB;
}

.apd-sidebar{
    width:290px;
    background:#0D2B6C;
    color:#fff;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.apd-main{
    flex:1;
    padding:30px;
}

.apd-content{
    margin-top:25px;
}

.apd-sidebar-top{
    text-align:center;
}

.apd-logo-placeholder{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#7CC70A;
    color:#0D2B6C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
}

.apd-role{
    display:inline-block;
    margin-top:10px;
    padding:6px 14px;
    border-radius:30px;
    background:#7CC70A;
    color:#0D2B6C;
    font-weight:700;
}

.apd-sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:40px;
}

.apd-sidebar-menu a{
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-radius:12px;
    transition:.25s;
}

.apd-sidebar-menu a:hover{
    background:#7CC70A;
    color:#0D2B6C;
}

.apd-sidebar-bottom{
    margin-top:40px;
}

.apd-sidebar-bottom a{
    display:block;
    text-decoration:none;
    color:#fff;
    padding:14px 18px;
    border-radius:12px;
}

.apd-sidebar-bottom a:hover{
    background:#7CC70A;
    color:#0D2B6C;
}

/* ==================================================
   KPI CARDS
================================================== */

.apd-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin:35px 0;

}

.apd-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.25s;

}

.apd-card:hover{

    transform:translateY(-6px);

}

.apd-card-icon{

    font-size:34px;

}

.apd-card-title{

    margin-top:18px;

    color:#777;

    font-weight:600;

}

.apd-card-number{

    margin-top:10px;

    font-size:36px;

    font-weight:700;

    color:#0D2B6C;

}

/* ==================================================
   CARDS
================================================== */

.apd-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:30px;
    margin-bottom:35px;
}

.apd-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.30s;
}

.apd-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.apd-card-icon{
    font-size:34px;
    margin-bottom:18px;
}

.apd-card-title{
    color:#6B7280;
    font-size:15px;
}

.apd-card-number{
    font-size:38px;
    font-weight:700;
    color:#0D2B6C;
    margin-top:10px;
}

/* ==================================================
   DASHBOARD CARDS
================================================== */

.apd-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin:35px 0;
}

.apd-card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .30s ease;
    position:relative;
    overflow:hidden;
}

.apd-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.apd-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#7CC70A;
}

.apd-card-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#EEF7DD;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:18px;
}

.apd-card-title{
    color:#6B7280;
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
}

.apd-card-number{
    color:#0D2B6C;
    font-size:36px;
    font-weight:800;
    line-height:1;
}

.apd-card-footer{
    margin-top:15px;
    color:#7CC70A;
    font-weight:700;
}

@media(max-width:1200px){

    .apd-cards{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .apd-cards{
        grid-template-columns:1fr;
    }

}

.apd-quick-actions{
    margin-top:40px;
}

.apd-actions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.apd-action-card{

    background:#fff;
    border-radius:20px;
    padding:28px;
    text-decoration:none;

    display:flex;
    align-items:center;
    gap:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.30s;
}

.apd-action-card:hover{

    transform:translateY(-6px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.apd-action-icon{

    width:60px;
    height:60px;
    border-radius:16px;

    background:#EEF7DD;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

}

.apd-action-card span{

    color:#0D2B6C;
    font-size:18px;
    font-weight:700;

}

/* ===================================================
   FIX HOMEY
=================================================== */

.apd-actions-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:25px !important;
    width:100% !important;
}

.apd-actions-grid > a.apd-action-card{
    display:flex !important;
    width:auto !important;
    max-width:none !important;
    float:none !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    margin:0 !important;
    padding:25px !important;
    border-radius:20px !important;
    background:#fff !important;
    text-decoration:none !important;
    box-shadow:0 15px 35px rgba(0,0,0,.08) !important;
}

.apd-action-card span{
    color:#0D2B6C !important;
    font-size:18px !important;
    font-weight:700 !important;
}

@media(max-width:1000px){

    .apd-actions-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}

@media(max-width:700px){

    .apd-actions-grid{
        grid-template-columns:1fr !important;
    }

}

.apd-hero-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.apd-mini-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:18px;
    backdrop-filter:blur(8px);
}

.apd-mini-card span{
    display:block;
    font-size:13px;
    opacity:.8;
    margin-bottom:6px;
}

.apd-mini-card strong{
    display:block;
    font-size:28px;
    font-weight:700;
}

/* ==========================================
   HEADER
========================================== */

.apd-header{

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:#fff;

    padding:22px 34px;

    border-radius:22px;

    margin-bottom:24px;

    box-shadow:0 10px 30px rgba(15,35,95,.08);

}

.apd-header-left{

    display:flex;

    align-items:center;

}

.apd-header-left img{

    width:340px;

    max-width:100%;

    height:auto;

    display:block;

}

.apd-header-right{

    display:flex;

    align-items:center;

    gap:16px;

}

/*======================================
=            APP LAYOUT APD            =
======================================*/

.apd-app{

    display:flex;

    min-height:100vh;

    background:#F4F7FB;

}

.apd-sidebar{

    width:280px;
    min-height:100vh;

    background:#0D2B6C;

    display:flex;
    flex-direction:column;

    position:sticky;
    top:0;

    color:#fff;

    padding:30px 22px;

    box-shadow:8px 0 30px rgba(0,0,0,.08);

    flex-shrink:0;

}

.apd-main{

    flex:1;

    padding:30px;

}

/* ================================
   SIDEBAR PREMIUM APD
================================ */

.apd-sidebar-menu a{

    display:flex;
    align-items:center;
    gap:14px;

    height:52px;

    padding:0 18px;

    margin-bottom:8px;

    border-radius:14px;

    color:#DDE7FF;

    text-decoration:none;

    font-weight:600;

    transition:all .25s ease;

}

.apd-sidebar-menu a:hover{

    background:rgba(124,199,10,.18);

    color:#FFFFFF;

    transform:translateX(4px);

}

.apd-sidebar-menu a.active{

    background:#7CC70A;

    color:#0D2B6C;

    font-weight:700;

}

/*====================================================
=          CALENDARIO PREMIUM APD
====================================================*/

.apd-calendar-page{

    margin-top:30px;

}

.apd-page-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:30px;

}

.apd-page-header h1{

    margin:0;

    color:#0D2B6C;

    font-size:34px;

}

.apd-page-header p{

    margin-top:8px;

    color:#6B7280;

}

.apd-calendar-layout{

    display:grid;

    grid-template-columns:2fr 360px;

    gap:30px;

}

.apd-calendar-main{

    background:#FFFFFF;

    border-radius:24px;

    padding:30px;

    min-height:700px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.apd-calendar-sidebar{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.apd-box{

    background:#FFFFFF;

    border-radius:20px;

    padding:24px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.apd-box h3{

    margin:0 0 15px;

    color:#0D2B6C;

}

.apd-box p{

    margin:0;

    color:#6B7280;

}
/* ===========================
   LOGO SIDEBAR PREMIUM
=========================== */

.apd-logo{

    width:112px;

    height:112px;

    background:#fff;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

}

.apd-logo-sidebar{

    width:92px;

    height:auto;

    display:block;

    margin:0 auto;

}

/* ==========================================================
   MOBILE APD
========================================================== */

@media (max-width:991px){

    .apd-app{
        display:block;
    }

    .apd-sidebar{

        position:fixed;
        left:-320px;
        top:0;

        width:280px;
        height:100vh;

        z-index:99999;

        transition:.30s;

        overflow:auto;
    }

    .apd-sidebar.open{
        left:0;
    }

    .apd-main{

        width:100%;
        padding:15px;

    }

    .apd-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

        padding:18px;

    }

    .apd-header-left{

        width:100%;

        justify-content:center;

    }

    .apd-header-left img{

        width:220px;

    }

    .apd-header-right{

        width:100%;

        justify-content:flex-end;

    }

    .apd-hero{

        grid-template-columns:1fr;

        padding:25px;

        gap:25px;

    }

    .apd-hero h1{

        font-size:34px;

    }

    .apd-hero-right{

        grid-template-columns:1fr 1fr;

    }

    .apd-cards{

        grid-template-columns:1fr;

    }

    .apd-actions-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width:600px){

    .apd-header-left img{

        width:180px;

    }

    .apd-hero{

        padding:20px;

    }

    .apd-hero h1{

        font-size:28px;

    }

    .apd-buttons{

        flex-direction:column;

    }

    .apd-btn{

        width:100%;

        text-align:center;

    }

    .apd-hero-right{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   BOTÓN MENÚ MÓVIL
========================================== */

.apd-mobile-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    border-radius:14px;

    background:#0D2B6C;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    margin-right:15px;

}

@media(max-width:991px){

    .apd-mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

}

/* ===========================
   PERFIL APD
=========================== */

.apd-page-header{
    margin-bottom:30px;
}

.apd-page-header h1{
    font-size:34px;
    font-weight:700;
    color:#173B8F;
    margin-bottom:8px;
}

.apd-page-header p{
    color:#7b8794;
}

.apd-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));

    gap:28px;

    align-items:start;

}





.apd-card p{
    margin-top:18px;
    margin-bottom:8px;
    font-weight:600;
}





.apd-btn{
    margin-top:25px;
    border:none;
    border-radius:14px;
    padding:14px 28px;
    cursor:pointer;
    font-weight:700;
}

.apd-btn-primary{
    background:#7CC70A;
    color:#173B8F;

}

@media(max-width:900px){

.apd-grid{
    grid-template-columns:1fr;
}

.apd-page-header h1{
    font-size:28px;
}

}
/*==================================================
HEADER PREMIUM APD
==================================================*/

.apd-header{

display:grid;

grid-template-columns:260px 1fr auto;

align-items:center;

gap:25px;

}

.apd-header-logo{

display:flex;

align-items:center;

text-decoration:none;

}

.apd-logo{

width:220px;

height:auto;

display:block;

}

.apd-search{

display:flex;

align-items:center;

height:52px;

background:#F4F7FB;

border-radius:14px;

padding:0 18px;

}

.apd-search input{

flex:1;

border:none;

background:none;

outline:none;

padding-left:12px;

font-size:15px;

}

.apd-header-right{

display:flex;

align-items:center;

gap:18px;

}

.apd-header-btn{

width:48px;

height:48px;

border:none;

background:#F4F7FB;

border-radius:14px;

cursor:pointer;

transition:.25s;

}

.apd-header-btn:hover{

background:#0D2B6C;

color:#fff;

}

.apd-user{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

color:#0D2B6C;

font-weight:600;

}

.apd-user img{

border-radius:50%;

}

.apd-user small{

display:block;

color:#6B7280;

font-size:12px;

margin-top:3px;

}

@media(max-width:991px){

.apd-header{

grid-template-columns:1fr;

}

.apd-header-center{

order:3;

}

.apd-header-right{

justify-content:space-between;

}

.apd-search{

width:100%;

}

}
/* =========================================
   TOOLBAR ALOJAMIENTOS
========================================= */

.apd-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.apd-search-box{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    border:1px solid #E8ECF4;

    border-radius:16px;

    padding:14px 18px;

    min-width:420px;

}

.apd-search-box input{

    width:100%;

    border:none;

    outline:none;

    background:none;

    font-size:15px;

}

.apd-toolbar-actions{

    display:flex;

    gap:12px;

}

.apd-filter{

    border:none;

    background:#fff;

    padding:12px 18px;

    border-radius:14px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.apd-filter:hover{

    background:#0D2B6C;

    color:#fff;

}

.apd-filter.active{

    background:#0D2B6C;

    color:#fff;

}

/* ===========================
   PROPERTY ICONS
=========================== */

.apd-property-location{
    display:flex;
    align-items:center;
    gap:8px;
    color:#667085;
    font-size:14px;
    line-height:1.5;
    margin-top:10px;
}

.apd-property-location::before{
    content:"\f3c5";
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    color:#EF4444;
}

.apd-property-features i{
    color:#0D47A1;
    font-size:15px;
    margin-bottom:8px;
    display:block;
}

.apd-property-actions i{
    margin-right:6px;
}

.apd-property-actions .apd-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

/* =====================================================
   ESTADÍSTICAS ALOJAMIENTOS
===================================================== */

.apd-stats{

    gap:18px;

    margin:20px 0 24px;

}

.apd-stat-card{

    min-height:74px;

    padding:14px 18px;

}

.apd-stat-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(15,23,42,.12);

}

.apd-stat-icon{

    width:38px;
    height:38px;
    font-size:18px;

}

.apd-stat-card strong{

    font-size:28px;

}

.apd-stat-card small{

    display:block;

    margin-top:6px;

    color:#6B7280;

    font-size:14px;

}

/*==================================
RESERVAS TOOLBAR
==================================*/

.apd-reservas-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin:28px 0;

    flex-wrap:wrap;

}

.apd-reservas-search{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    border-radius:16px;

    padding:14px 18px;

    min-width:420px;

    box-shadow:0 8px 24px rgba(15,23,42,.06);

    border:1px solid #edf2f7;

}

.apd-reservas-search input{

    border:none;

    outline:none;

    width:100%;

    font-size:15px;

    background:transparent;

}

.apd-reservas-actions{

    display:flex;

    gap:14px;

}

.apd-btn-outline{

    background:#fff;

    color:#1e3a8a;

    border:1px solid #dbe4f0;

}

.apd-btn-primary{

    background:#7CC70A;

    color:#fff;

}

.apd-btn-primary:hover{

    transform:translateY(-2px);

}
/*==================================
TABLA PREMIUM RESERVAS
==================================*/

.apd-card{

    background:#fff;

    border-radius:22px;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    padding:18px;

    border:1px solid #eef2f7;

}

.apd-table{

    border-spacing:0 8px;

}

.apd-table thead th{

    background:none;

    color:#64748b;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    padding:0 18px 14px;

    border:none;

}

.apd-table tbody tr{

    background:#fff;

    transition:.25s;

    box-shadow:0 4px 18px rgba(15,23,42,.05);

}

.apd-table tbody tr:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 35px rgba(15,23,42,.10);

}

.apd-table tbody td{

    padding:14px 16px;

}

.apd-table tbody td:first-child{

    border-left:1px solid #edf2f7;

    border-radius:16px 0 0 16px;

}

.apd-table tbody td:last-child{

    border-right:1px solid #edf2f7;

    border-radius:0 16px 16px 0;

}

.apd-table strong{

    font-size:15px;

    color:#0f172a;

}

.apd-table small{

    color:#64748b;

}

.apd-table a.apd-btn{

    border-radius:12px;

    padding:10px 18px;

    font-size:13px;

    font-weight:700;

}

/*==================================
PROPERTY CARD
==================================*/

.apd-property-card{

    display:flex;

    align-items:center;

    gap:16px;

}

.apd-property-image{

    width:72px;

    height:72px;

    min-width:72px;

    max-width:72px;

    border-radius:14px;

    overflow:hidden;

    flex-shrink:0;

    position:relative;

}
.apd-property-image img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.35s;

}

.apd-property-info{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.apd-property-info strong{

    font-size:15px;

    font-weight:700;

}

.apd-property-info span{

    font-size:12px;
margin-top:3px; 
    color:#64748b;

}

/* ==========================================
   APD Dashboard Premium
========================================== */

.apd-dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:25px 0 35px;
}

.apd-dashboard-header h1{
    margin:0;
    font-size:30px;
    color:#0D2B6C;
    font-weight:700;
}

.apd-dashboard-header p{
    margin:6px 0 0;
    color:#6b7280;
}

.apd-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.apd-dashboard .postbox{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.apd-dashboard .postbox > div{
    padding:24px !important;
}

.apd-dashboard h2{
    margin-bottom:12px;
    color:#0D2B6C;
}

.apd-dashboard h1{
    margin:0;
    font-size:36px;
    font-weight:700;
}

/* =====================================================
   SIDEBAR PREMIUM V2
===================================================== */

.apd-sidebar{

    background:linear-gradient(180deg,#0D2B6C 0%,#123A8F 100%);

    border-right:1px solid rgba(255,255,255,.06);

}

.apd-sidebar-top{

    padding-bottom:28px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.apd-sidebar-top h3{

    margin:16px 0 6px;

    font-size:22px;

    font-weight:700;

    color:#fff;

}

.apd-role{

    background:rgba(124,199,10,.18);

    color:#BDF45C;

    border:1px solid rgba(124,199,10,.35);

}

.apd-sidebar-menu{

    margin-top:30px;

    gap:8px;

}

/* =====================================================
   MENÚ LATERAL PREMIUM
===================================================== */

.apd-sidebar-menu a{

    position:relative;

    display:flex;

    align-items:center;

    gap:16px;

    height:56px;

    padding:0 18px;

    border-radius:16px;

    color:rgba(255,255,255,.82);

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:all .28s ease;

}

.apd-sidebar-menu a .dashicons{

    font-size:20px;

    width:20px;

    height:20px;

    transition:inherit;

}

.apd-sidebar-menu a:hover{

    background:rgba(255,255,255,.08);

    color:#ffffff;

    transform:translateX(6px);

}

.apd-sidebar-menu a.active{

    background:#FFFFFF;

    color:#0D2B6C;

    box-shadow:0 12px 28px rgba(0,0,0,.18);

}

.apd-sidebar-menu a.active::before{

    content:"";

    position:absolute;

    left:-12px;

    width:5px;

    height:32px;

    border-radius:999px;

    background:#7CC70A;

}

.apd-sidebar-menu a.active .dashicons{

    color:#7CC70A;

}

/* =====================================================
   USUARIO + LOGOUT PREMIUM
===================================================== */

.apd-sidebar-bottom{

    margin-top:auto;

    padding-top:24px;

    border-top:1px solid rgba(255,255,255,.08);

}

.apd-sidebar-user{

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px;

    margin-bottom:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    backdrop-filter:blur(12px);

}

.apd-user-avatar img{

    width:46px;

    height:46px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.20);

    display:block;

}

.apd-user-info{

    display:flex;

    flex-direction:column;

    min-width:0;

}

.apd-user-info strong{

    color:#FFFFFF;

    font-size:15px;

    font-weight:700;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

.apd-user-info small{

    color:rgba(255,255,255,.70);

    font-size:13px;

    margin-top:3px;

}

.apd-logout{

    display:flex !important;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:52px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#FFFFFF !important;

    font-weight:600;

    text-decoration:none;

    transition:all .25s ease;

}

.apd-logout:hover{

    background:#E53935;

    border-color:#E53935;

    color:#FFFFFF !important;

    transform:translateY(-2px);

}
/* =====================================================
   LOGO PREMIUM V2
===================================================== */

.apd-logo{

    width:124px;

    height:124px;

    margin:0 auto 24px;

    padding:16px;

    background:#FFFFFF;

    border-radius:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 18px 45px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.90);

    transition:all .30s ease;

}

.apd-logo:hover{

    transform:translateY(-4px) scale(1.03);

    box-shadow:
        0 28px 60px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.90);

}

.apd-logo-sidebar{

    width:100%;

    max-width:86px;

    height:auto;

    display:block;

}

.apd-sidebar-top{

    text-align:center;

}

.apd-sidebar-top h3{

    letter-spacing:-.02em;

}

.apd-sidebar-top::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    margin:22px auto 0;

    border-radius:999px;

    background:linear-gradient(90deg,#7CC70A,#A8E63A);

}

/* =====================================================
   HEADER PREMIUM V2
===================================================== */

.apd-header{

    position:sticky;

    top:20px;

    z-index:100;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(15,23,42,.06);

    border-radius:22px;

    padding:18px 28px;

    box-shadow:
        0 10px 35px rgba(15,23,42,.08);

}

.apd-header-left h1{

    margin:0;

    font-size:30px;

    font-weight:800;

    color:#0D2B6C;

    letter-spacing:-.03em;

}

.apd-header-left p{

    margin:6px 0 0;

    color:#64748B;

    font-size:15px;

}

.apd-header-right{

    display:flex;

    align-items:center;

    gap:14px;

}

.apd-header-btn{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F8FAFC;

    border:1px solid #E5EAF2;

    border-radius:14px;

    transition:all .25s ease;

    cursor:pointer;

}

.apd-header-btn:hover{

    background:#0D2B6C;

    color:#FFFFFF;

    border-color:#0D2B6C;

    transform:translateY(-2px);

    box-shadow:0 10px 24px rgba(13,43,108,.25);

}