/* assets/custom/css/dashboard.css */

/* Custom dashboard styling */
.app-sidebar-logo {
    transition: all 0.3s ease;
}

.app-sidebar-minimize .app-sidebar-logo {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Custom card styling */
.card-flush {
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
}

/* Organization/Branch selector styling */
.form-select-sm {
    min-width: 200px;
}

/* Dashboard specific overrides */
.page-title {
    margin-bottom: 0;
}

/* Chart widget custom styling */
.chart-widget {
    position: relative;
    overflow: hidden;
}

/* Table responsive improvements */
.table-responsive {
    border-radius: 0.75rem;
}

/* Status badges */
.badge-light-success {
    background-color: rgba(80, 205, 137, 0.1);
    color: #50cd89;
}

.badge-light-warning {
    background-color: rgba(255, 199, 0, 0.1);
    color: #ffc700;
}

.badge-light-danger {
    background-color: rgba(241, 65, 108, 0.1);
    color: #f1416c;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .form-select-sm {
        min-width: 150px;
    }
    
    .card-title span {
        font-size: 1.1rem;
    }
}