/* =========================================================
   HABLAR PRO DASHBOARD - THEME OVERRIDE
========================================================= */

.hpd-dashboard,
.hpd-dashboard * {
    box-sizing: border-box;
}


/* Dashboard itself */

.hpd-dashboard {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: stretch !important;

    font-family: inherit;
}


/* Sidebar */

.hpd-dashboard .hpd-sidebar {
    width: 280px !important;
    min-width: 280px !important;

    margin: 0 !important;

    padding: 20px !important;

    display: flex !important;
    flex-direction: column !important;

    background: #ffffff !important;

    border: 1px solid #ECE8F8 !important;
    border-radius: 28px !important;

    box-shadow: 0 8px 30px rgba(0,0,0,.05) !important;
}


/* Sidebar navigation */

.hpd-dashboard .hpd-sidebar-navigation {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;

    gap: 8px !important;
}


/* Sidebar tabs */

.hpd-dashboard .hpd-sidebar-item {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;

    margin: 0 !important;

    padding: 10px 18px !important;

    border: 0 !important;

    background: transparent !important;

    border-radius: 14px !important;

    box-shadow: none !important;

    text-decoration: none !important;

    cursor: pointer;
}


/* Active tab */

.hpd-dashboard .hpd-sidebar-item.is-active {
    background: #EEE9FF !important;
}


/* Content */

.hpd-dashboard .hpd-content {
    flex: 1 !important;

    width: auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   TEMPLATE SWITCHING
========================================================= */

.hpd-dashboard .hpd-panel {
    display: none !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


.hpd-dashboard .hpd-panel.is-active {
    display: block !important;
}