/* Custom styles for FESCO Bill Web Portal - https://fescobill.org.pk */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Custom glowing borders & shadows */
.glow-emerald {
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.3);
}

.gradient-header {
    background: linear-gradient(135deg, #0f172a 0%, #064e3b 50%, #022c22 100%);
}

/* Custom Accordion animation */
details summary::-webkit-details-marker {
    display: none;
}
details[open] summary svg {
    transform: rotate(180deg);
}

/* Table styling */
.custom-table th {
    background-color: #065f46;
    color: #ffffff;
}
.custom-table tr:nth-child(even) {
    background-color: #f8fafc;
}
