/* Dashboard Component Scoped Styles */


/* Main Container */
.dashboard-container {
    background-color: var(--gray-50);
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Statistics Cards */
.stats-grid {
    margin-bottom: 1rem;
}


    .stats-grid .mud-grid-item {
        display: flex !important;
        margin-bottom: 12px;
    }

    .stats-grid .stat-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        width: 100% !important;
    }

.card-stat-wrap {
    border-radius: 10px;
    padding: 8px;
    background: #f3f4f6;
}
/* Card Styling */
.card-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.table-header {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

/* Grids and Spacing */
.content-grid {
    margin-bottom: 1rem;
}

/* Stat Card Content Styles */
.stat-value-large {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0;
}

.stat-value-small {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.stat-value-active {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--green-600);
    margin-bottom: 0;
}

.stat-value-paused {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--orange-600);
    margin-bottom: 0;
}

.stat-value-inactive {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--red-600);
    margin-bottom: 0;
}

/* Pending Dues Styles */
.due-date {
    font-size: 0.875rem;
}

.due-overdue {
    font-size: 0.75rem;
    color: var(--red-600);
}

.amount-overdue {
    color: var(--red-600);
}

/* Section Labels */
.section-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

/* Pending Collection Stats */
.stat-value-medium {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Daily Revenue Stats */
.revenue-value {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Animal Stats */
.animal-count {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0;
}

.animal-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0;
}
