/* Style variables and reset */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #0B0F19;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(24, 37, 65, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --primary-glow: rgba(16, 185, 129, 0.35);

    --accent-pledged: #F59E0B;
    --accent-pledged-dark: #D97706;
    --accent-pledged-glow: rgba(245, 158, 11, 0.3);

    --accent-donated: #10B981;
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #111827;

    --gold-accent: #EAB308;
    --danger: #EF4444;
    --danger-glow: rgba(239, 68, 68, 0.25);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(11, 15, 25, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Auth / Login Overlay */
#login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(20px);
    animation: fadeInUp var(--transition-normal) forwards;
}

.masjid-logo-container {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.masjid-logo-icon {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
    animation: pulseGlow 3s infinite ease-in-out;
}

.login-card h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.login-card h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pin-input-container {
    margin-bottom: 2rem;
}

.pin-display {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    transition: all var(--transition-fast);
}

.pin-dot.filled {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transform: scale(1.15);
}

/* Pad layout */
.pin-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 280px;
    margin: 0 auto 1.5rem auto;
}

.pin-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 600;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: all var(--transition-fast);
}

.pin-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.08);
}

.pin-btn:active {
    background: var(--primary-glow);
    transform: scale(0.95);
}

.pin-btn.action-btn {
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.01);
}

.pin-btn.action-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
}

.pin-error-message {
    color: var(--danger);
    font-size: 0.9rem;
    min-height: 20px;
    margin-top: 0.5rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.pin-error-message.show {
    opacity: 1;
    animation: shake 0.3s ease-in-out;
}

/* App Main Dashboard Container */
.app-container {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 6rem 1.5rem;
}

.app-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* Header Area */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.header-info h1 {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-logout {
    border-color: rgba(239, 68, 68, 0.3);
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

/* Backup button styles (admin header) */
.btn-backup {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
}

.btn-backup:hover {
    background: #facc15;
    border-color: #facc15;
    box-shadow: 0 0 14px rgba(234, 179, 8, 0.45);
    color: var(--text-dark);
}

.btn-backup-outline {
    background: transparent;
    border-color: rgba(234, 179, 8, 0.4);
    color: var(--gold-accent);
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
}

.btn-backup-outline:hover {
    background: rgba(234, 179, 8, 0.08);
    border-color: var(--gold-accent);
    color: #facc15;
}

/* Dashboard Summary Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-card.donated::before { background-color: var(--primary); }
.stat-card.pledged::before { background-color: var(--accent-pledged); }
.stat-card.remaining::before { background-color: #3B82F6; }
.stat-card.progress-total::before { background-color: var(--gold-accent); }

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold-accent) 100%);
    width: 0%;
    border-radius: 4px;
    transition: width var(--transition-slow) ease-out;
}

/* Control Bar (Filters, Actions, Search) */
.control-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.filter-group {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-main);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.filter-btn.active.donated-filter { border-bottom: 2px solid var(--primary); }
.filter-btn.active.pledged-filter { border-bottom: 2px solid var(--accent-pledged); }
.filter-btn.active.available-filter { border-bottom: 2px solid #3B82F6; }

.search-box-container {
    position: relative;
    min-width: 250px;
    flex-grow: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    color: var(--text-main);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.85rem;
}

.layout-toggle-group {
    display: flex;
    gap: 8px;
}

/* Saff Layout Grid View */
.grid-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.saff-section {
    background: rgba(17, 24, 39, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.2rem;
}

.saff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-left: 3px solid var(--gold-accent);
    padding-left: 10px;
}

.saff-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.saff-stats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Layout classes for grid and saff scrolling */
.grid-container.layout-grid .saff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
    gap: 8px;
}

.grid-container.layout-row .saff-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.grid-container.layout-row .musalah-cell {
    flex: 0 0 42px;
    height: 42px;
}

/* Fallback default display */
.saff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
    gap: 8px;
}

/* Musalah Cell */
.musalah-cell {
    aspect-ratio: 1;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
    user-select: none;
    transition: all var(--transition-fast);
}

/* Visual indications for states */
.musalah-cell.available {
    border-color: rgba(59, 130, 246, 0.2);
}
.musalah-cell.available:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}

.musalah-cell.pledged {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--accent-pledged);
}
.musalah-cell.pledged:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-pledged);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--accent-pledged-glow);
}

.musalah-cell.donated {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    color: var(--primary-light);
}
.musalah-cell.donated:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Selected cells */
.musalah-cell.selected {
    background: rgba(234, 179, 8, 0.15) !important;
    border-color: var(--gold-accent) !important;
    color: var(--gold-accent) !important;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.25);
    animation: selectionPulse 2s infinite ease-in-out;
}

/* Search results highlight */
.musalah-cell.search-highlight {
    animation: searchHighlight 1.5s infinite alternate;
    z-index: 5;
}

/* Sliding Actions Drawer (at the bottom) */
.action-drawer {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 900px;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    box-shadow: 0 -20px 40px -10px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    z-index: 100;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-drawer.active {
    bottom: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.drawer-title span {
    color: var(--gold-accent);
}

.drawer-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    color: var(--text-main);
    font-size: 0.85rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.drawer-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0.5rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #111827;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.modal-field {
    margin-bottom: 1rem;
}

.modal-field-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.modal-field-value {
    font-size: 0.95rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-donated {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-pledged {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-pledged);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-available {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--primary-glow));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.7));
    }
}

@keyframes selectionPulse {
    0%, 100% {
        border-color: var(--gold-accent);
        box-shadow: 0 0 8px rgba(234, 179, 8, 0.25);
    }
    50% {
        border-color: #FACC15;
        box-shadow: 0 0 16px rgba(234, 179, 8, 0.55);
    }
}

@keyframes searchHighlight {
    0% {
        box-shadow: 0 0 5px #FACC15;
        border-color: #FACC15;
    }
    100% {
        box-shadow: 0 0 20px #EAB308, inset 0 0 10px rgba(234, 179, 8, 0.5);
        border-color: #EAB308;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* Notification/Toast styling */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    border-left-color: var(--danger);
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .app-container {
        padding: 1rem 1rem 8rem 1rem;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    .control-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box-container {
        max-width: 100%;
    }
    .action-drawer {
        width: 100%;
        border-radius: 12px 12px 0 0;
        bottom: -250px;
    }
    .drawer-form {
        grid-template-columns: 1fr;
    }
    
    /* Make cells slightly smaller in grid view to fit more per row */
    .saff-grid {
        grid-template-columns: repeat(auto-fill, minmax(36px, 1fr));
        gap: 6px;
    }
    .musalah-cell {
        font-size: 0.7rem;
    }
    .grid-container.layout-row .musalah-cell {
        flex: 0 0 36px;
        height: 36px;
    }
    /* Stats grid */
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-card {
        padding: 1.2rem;
    }
    .stat-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .app-container {
        padding: 0.8rem 0.8rem 9rem 0.8rem;
    }
    .header-info h1 {
        font-size: 1.4rem;
    }
    .header-info p {
        font-size: 0.8rem;
    }
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .stat-card {
        padding: 1rem;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .saff-grid {
        grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
        gap: 5px;
    }
    .musalah-cell {
        font-size: 0.65rem;
    }
    .grid-container.layout-row .musalah-cell {
        flex: 0 0 32px;
        height: 32px;
    }
    .login-card {
        padding: 1.5rem 1.2rem;
    }
    .login-card h1 {
        font-size: 1.3rem;
    }
    .login-card h2 {
        font-size: 0.85rem;
    }
    .pin-btn {
        height: 54px;
        width: 54px;
        font-size: 1.2rem;
    }
    .action-drawer {
        padding: 1rem;
    }
    .drawer-title {
        font-size: 0.95rem;
    }
}
