/**
 * StyleSheet: Dashboard Responsive Canvas Layout
 * Deskripsi: Ekstraksi arsitektur CSS terisolasi dari menu_dashboard_v1.php
 */

/* Styling Grid Menu */
.quick-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 12px; 
    text-align: center; 
    margin-bottom: 24px;
}
.quick-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-decoration: none; 
    cursor: pointer; 
}
.quick-icon-wrapper { 
    width: 52px; 
    height: 52px; 
    border-radius: 16px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 8px; 
    font-size: 20px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.quick-item:hover .quick-icon-wrapper { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.quick-item span { 
    font-size: 11px; 
    font-weight: 500; 
    color: #475569; 
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Section & Sub Heading Title */
.section-title { 
    font-size: 14px; 
    font-weight: 700; 
    color: #1e293b; 
    margin-bottom: 12px; 
}
.sub-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin: 0 0 12px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--pondok-brand-color);
    padding-left: 8px;
}

/* Card E-Wallet Style */
.wallet-card {
    background: var(--pondok-brand-color);
    border-radius: 20px;
    padding: 20px;
    color: #ffffff;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}
.wallet-balance {
    font-size: 24px;
    font-weight: 800;
    margin: 8px 0;
    letter-spacing: -0.5px;
}
.wallet-footer {
    font-size: 11px;
    opacity: 0.85;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}