/* CARD WRAPPER (budgets-nav) */
.budgets-nav {
    display: flex;
    align-items: center;
    padding: 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    transition: 0.25s;
    gap: 16px;
}

.budgets-nav:hover {
    transform: translateY(-3px);
}

/* ACTIVE BLUE CARD */
.budgets-nav.active {
    background: #4F46E5;
    color: #fff !important;
    border: none;
}

.budgets-nav.active .budgets-nav-text p,
.budgets-nav.active .budgets-nav-text h3,
.budgets-nav.active .show-time {
    color: #fff !important;
}

/* ICON CIRCLE */
.budgets-nav-icon span {
    height: 50px;
    width: 50px;
    display: flex;
    border-radius: 50%;
    background: #F1EEFF;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #4F46E5;
}

.budgets-nav.active .budgets-nav-icon span {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* TEXT */
.budgets-nav-text h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.budgets-nav-text p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.budgets-nav.active .budgets-nav-text p {
    color: #fff !important;
}

/* STATUS TAG */
.show-time {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

/* SUMMARY WIDGETS */
.budget-widget {
    text-align: center;
    padding: 15px 0;
}

.budget-widget p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.budget-widget h3 {
    font-size: 22px;
    margin-top: 5px;
    font-weight: 700;
}

/* CARD SPACING FIX */
.card {
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

/* CHART CARD */
.card-header h4 {
    font-size: 18px;
    font-weight: 700;
}

/* CONNECT BUTTON WRAPPER */
.card.p-4 {
    border-radius: 12px;
}

/* BUTTON */
.btn-primary {
    border-radius: 10px !important;
}
/* DEFAULT SIDEBAR */
.sidebar {
    width: 250px;
    transition: all 0.3s ease;
    /* overflow: hidden; */
}

/* COLLAPSED SIDEBAR */
.sidebar.collapsed {
    width: 80px !important;
}



.sidebar_text{
    font-size: 16px;

    color: aliceblue;
}

.sidebar .sidebar-toggle-btn{
    color: #fff;
    font-size: 18px;
}

.sidebar.collapsed .brand-logo .full-logo{
    display: none;
}

#sidebar_trigger i {
    display: inline-block;
    transition: transform 0.3s ease;
}

#sidebar-menu.collapsed #sidebar_trigger i {
    transform: rotate(180deg);
}
