/* =============================================
   InfoGempaBMKG.org - Stylesheet
   Design based on BMKG Official Website
   ============================================= */

/* Import Google Fonts - DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* CSS Variables - BMKG Color Scheme */
:root {
    /* Primary Colors */
    --bmkg-blue: #0133CC;
    --bmkg-blue-dark: #0F172A;
    --bmkg-blue-light: #3B82F6;
    --bmkg-green: #007B00;
    --bmkg-orange: #ED7B03;
    --bmkg-yellow: #F0B100;
    --bmkg-red: #CF0C00;

    /* Background Colors */
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-card: #FFFFFF;
    --bg-gray: #F1F5F9;

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-white: #FFFFFF;

    /* Border Colors */
    --border-color: #E2E8F0;
    --border-dark: #CBD5E1;

    /* Tint Colors */
    --blue-tint: rgba(1, 51, 204, 0.08);
    --green-tint: rgba(0, 123, 0, 0.08);
    --orange-tint: rgba(237, 123, 3, 0.08);
    --red-tint: rgba(207, 12, 0, 0.08);
    --yellow-tint: rgba(240, 177, 0, 0.08);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-top {
    background: linear-gradient(90deg, var(--bmkg-blue) 0%, var(--bmkg-blue-dark) 100%);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    color: var(--text-white);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bmkg-blue), var(--bmkg-blue-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.025em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.nav-link.active {
    background: var(--bmkg-blue);
    color: var(--text-white);
}

.nav-link i {
    width: 18px;
    height: 18px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-xl);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E3A5F 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ==================== STATS CARDS ==================== */
.stats-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.blue { background: var(--blue-tint); color: var(--bmkg-blue); }
.stat-icon.green { background: var(--green-tint); color: var(--bmkg-green); }
.stat-icon.orange { background: var(--orange-tint); color: var(--bmkg-orange); }
.stat-icon.red { background: var(--red-tint); color: var(--bmkg-red); }

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==================== SECTION ==================== */
.section {
    padding: 2rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-icon {
    width: 40px;
    height: 40px;
    background: var(--bmkg-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.section-title-icon i {
    width: 20px;
    height: 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.view-all-btn:hover {
    background: var(--bmkg-blue);
    color: var(--text-white);
    border-color: var(--bmkg-blue);
}

/* ==================== LATEST EARTHQUAKE CARD ==================== */
.latest-quake-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 2rem;
}

.latest-quake-header {
    background: linear-gradient(135deg, var(--bmkg-blue) 0%, var(--bmkg-blue-dark) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest-quake-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.latest-quake-header-title i {
    width: 24px;
    height: 24px;
}

.latest-quake-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 968px) {
    .latest-quake-content {
        grid-template-columns: 1fr;
    }
}

.quake-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quake-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.quake-magnitude {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    flex-shrink: 0;
    color: white;
    box-shadow: var(--shadow-lg);
}

.magnitude-low { background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%); }
.magnitude-medium { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.magnitude-high { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }
.magnitude-extreme { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); }

.quake-title-group h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.quake-datetime {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.quake-datetime span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.quake-datetime i {
    width: 16px;
    height: 16px;
    color: var(--bmkg-blue);
}

.quake-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.quake-status {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-safe {
    background: var(--green-tint);
    color: var(--bmkg-green);
    border: 1px solid rgba(0, 123, 0, 0.2);
}

.status-warning {
    background: var(--yellow-tint);
    color: #B45309;
    border: 1px solid rgba(240, 177, 0, 0.3);
}

.status-danger {
    background: var(--red-tint);
    color: var(--bmkg-red);
    border: 1px solid rgba(207, 12, 0, 0.2);
}

.status-felt {
    background: var(--blue-tint);
    color: var(--bmkg-blue);
    border: 1px solid rgba(1, 51, 204, 0.2);
}

.status-badge i {
    width: 16px;
    height: 16px;
}

.quake-map {
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    border-left: 1px solid var(--border-color);
}

@media (max-width: 968px) {
    .quake-map {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

.quake-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== EARTHQUAKE LIST ==================== */
.quake-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.quake-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.quake-item:hover {
    border-color: var(--bmkg-blue);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.quake-item-mag {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    flex-shrink: 0;
    color: white;
}

.quake-item-info {
    flex: 1;
    min-width: 0;
}

.quake-item-location {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.quake-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.quake-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.quake-item-meta i {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

.quake-item-status {
    flex-shrink: 0;
}

/* ==================== DATA TABLE ==================== */
.table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-gray);
    flex-wrap: wrap;
    gap: 1rem;
}

.table-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-title i {
    width: 20px;
    height: 20px;
    color: var(--bmkg-blue);
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bmkg-blue);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #0040FF;
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    border-color: var(--border-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--bg-gray);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.data-table tr:hover td {
    background: var(--bg-gray);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.table-mag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.125rem;
    color: white;
}

/* Responsive Table */
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }

    .data-table {
        min-width: 800px;
    }
}

/* ==================== SOURCE CREDIT ==================== */
.source-credit {
    background: linear-gradient(135deg, var(--blue-tint) 0%, var(--bg-gray) 100%);
    border: 1px solid rgba(1, 51, 204, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.source-credit-logo {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.source-credit-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.source-credit-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.source-credit-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.source-credit-content a {
    color: var(--bmkg-blue);
    font-weight: 600;
}

.source-credit-content a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .source-credit {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    margin-top: 3rem;
}

.footer-main {
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand .logo {
    display: inline-flex;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--bmkg-yellow);
}

.footer-links i {
    width: 16px;
    height: 16px;
}

/* Footer Source Credit */
.footer-source {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 2rem;
}

.footer-source-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bmkg-yellow);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-source-title i {
    width: 18px;
    height: 18px;
}

.footer-source p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-source a {
    color: var(--bmkg-yellow);
    font-weight: 600;
}

.footer-source a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-api-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.api-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: #22C55E;
}

.api-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ==================== ALERT ==================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
}

.alert i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-info {
    background: var(--blue-tint);
    border: 1px solid rgba(1, 51, 204, 0.2);
    color: var(--bmkg-blue);
}

.alert-warning {
    background: var(--yellow-tint);
    border: 1px solid rgba(240, 177, 0, 0.3);
    color: #92400E;
}

.alert-danger {
    background: var(--red-tint);
    border: 1px solid rgba(207, 12, 0, 0.2);
    color: var(--bmkg-red);
}

.alert-success {
    background: var(--green-tint);
    border: 1px solid rgba(0, 123, 0, 0.2);
    color: var(--bmkg-green);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E3A5F 100%);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--bmkg-yellow);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.page-desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.0625rem;
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.empty-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== LAST UPDATE ==================== */
.last-update {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.last-update-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.last-update-light {
    color: var(--text-muted);
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
}

/* ==================== CRON PAGE ==================== */
.cron-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.cron-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.cron-card h3 i {
    width: 20px;
    height: 20px;
    color: var(--bmkg-blue);
}

.cron-log {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.8125rem;
    max-height: 300px;
    overflow-y: auto;
    color: var(--text-white);
}

.cron-log code {
    color: #22C55E;
}

.cron-log-item {
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cron-log-item:last-child {
    border-bottom: none;
}

.cron-log-success { color: #4ADE80; }
.cron-log-error { color: #F87171; }
.cron-log-info { color: #60A5FA; }

.cron-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cron-stat {
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.cron-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bmkg-blue);
}

.cron-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-small { font-size: 0.875rem; }
.text-gray { color: var(--text-muted); }
.text-success { color: var(--bmkg-green); }
.text-warning { color: var(--bmkg-orange); }
.text-danger { color: var(--bmkg-red); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.hidden { display: none; }

/* ==================== ANIMATIONS ==================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--bmkg-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==================== CONTENT PAGES ==================== */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.content-card-header {
    background: var(--bg-gray);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.content-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.content-card-header h2 i {
    width: 24px;
    height: 24px;
    color: var(--bmkg-blue);
}

.content-card-body {
    padding: 1.5rem;
}

.content-card-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card-body p:last-child {
    margin-bottom: 0;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li i {
    width: 20px;
    height: 20px;
    color: var(--bmkg-green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Disclaimer List */
.disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disclaimer-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--bmkg-blue);
    border-radius: 50%;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-icon.blue { background: var(--blue-tint); color: var(--bmkg-blue); }
.feature-icon.green { background: var(--green-tint); color: var(--bmkg-green); }
.feature-icon.orange { background: var(--orange-tint); color: var(--bmkg-orange); }
.feature-icon.red { background: var(--red-tint); color: var(--bmkg-red); }

.feature-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    max-width: 100%;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    width: 100%;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-label .required {
    color: var(--bmkg-red);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--bmkg-blue);
    box-shadow: 0 0 0 3px rgba(1, 51, 204, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    width: 24px;
    height: 24px;
}

.contact-info-icon.blue { background: var(--blue-tint); color: var(--bmkg-blue); }
.contact-info-icon.green { background: var(--green-tint); color: var(--bmkg-green); }
.contact-info-icon.orange { background: var(--orange-tint); color: var(--bmkg-orange); }

.contact-info-content h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Margin utilities */
.mt-4 { margin-top: 1.5rem; }

/* ==================== ENHANCED MOBILE RESPONSIVE ==================== */

/* Mobile First - Small Devices (< 480px) */
@media (max-width: 480px) {
    /* Base */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header */
    .header-content {
        padding: 0.75rem 0;
    }

    .logo-img {
        width: 44px;
        height: 44px;
    }

    .logo-img i {
        width: 22px !important;
        height: 22px !important;
    }

    .logo-title {
        font-size: 1.125rem;
    }

    .logo-subtitle {
        font-size: 0.6875rem;
    }

    .logo {
        gap: 0.75rem;
    }

    /* Hero */
    .hero {
        padding: 2rem 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }

    /* Stats */
    .stats-section {
        margin-top: -2rem;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon i {
        width: 22px !important;
        height: 22px !important;
    }

    .stat-value {
        font-size: 1.375rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Section */
    .section {
        padding: 1.25rem 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.125rem;
        gap: 0.5rem;
    }

    .section-title-icon {
        width: 32px;
        height: 32px;
    }

    .section-title-icon i {
        width: 16px !important;
        height: 16px !important;
    }

    .view-all-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    /* Latest Earthquake Card */
    .latest-quake-card {
        border-radius: var(--radius-lg);
    }

    .latest-quake-header {
        padding: 0.875rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .latest-quake-header-title {
        font-size: 1rem;
    }

    .latest-quake-header-title i {
        width: 20px !important;
        height: 20px !important;
    }

    .quake-info {
        padding: 1.25rem;
        gap: 1rem;
    }

    .quake-header {
        flex-direction: column;
        gap: 1rem;
    }

    .quake-magnitude {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
    }

    .quake-title-group h2 {
        font-size: 1.0625rem;
    }

    .quake-datetime {
        font-size: 0.8125rem;
        gap: 0.75rem;
    }

    .quake-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .detail-item {
        padding: 0.875rem 1rem;
    }

    .detail-label {
        font-size: 0.6875rem;
    }

    .detail-value {
        font-size: 0.9375rem;
    }

    .quake-status {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .status-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .status-badge i {
        width: 14px !important;
        height: 14px !important;
    }

    .quake-map {
        min-height: 250px;
    }

    /* Earthquake List */
    .quake-list {
        gap: 0.625rem;
    }

    .quake-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .quake-item:hover {
        transform: none;
    }

    .quake-item-mag {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }

    .quake-item-info {
        width: 100%;
    }

    .quake-item-location {
        font-size: 0.9375rem;
    }

    .quake-item-meta {
        font-size: 0.75rem;
        gap: 0.5rem 0.75rem;
    }

    .quake-item-meta i {
        width: 12px !important;
        height: 12px !important;
    }

    .quake-item-status {
        align-self: flex-start;
    }

    /* Source Credit */
    .source-credit {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .source-credit-logo {
        width: 60px;
        height: 60px;
    }

    .source-credit-logo img {
        width: 44px;
        height: 44px;
    }

    .source-credit-content h4 {
        font-size: 0.9375rem;
    }

    .source-credit-content p {
        font-size: 0.8125rem;
    }

    /* Table */
    .table-header {
        padding: 1rem;
    }

    .table-title {
        font-size: 1rem;
    }

    .table-actions {
        width: 100%;
    }

    .table-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }

    .table-mag {
        width: 44px;
        height: 44px;
        font-size: 0.9375rem;
    }

    /* Page Header */
    .page-header {
        padding: 1.75rem 0;
    }

    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-desc {
        font-size: 0.9375rem;
    }

    /* Alerts */
    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
        border-radius: var(--radius-md);
    }

    .alert i {
        width: 18px !important;
        height: 18px !important;
    }

    /* Footer */
    .footer-main {
        padding: 2rem 0;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand .logo-title {
        font-size: 1.125rem;
    }

    .footer-desc {
        font-size: 0.875rem;
    }

    .footer-section h4 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-source {
        padding: 1.25rem;
    }

    .footer-source-title {
        font-size: 0.8125rem;
    }

    .footer-source p {
        font-size: 0.8125rem;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-api-info {
        font-size: 0.75rem;
    }

    /* Empty State */
    .empty-state {
        padding: 2.5rem 1rem;
    }

    .empty-icon {
        font-size: 3rem;
    }

    .empty-title {
        font-size: 1.125rem;
    }

    .empty-desc {
        font-size: 0.875rem;
    }

    /* Last Update Badge */
    .last-update {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    /* Content Pages */
    .content-wrapper {
        padding: 1.5rem 0;
    }

    .content-card {
        border-radius: var(--radius-lg);
        margin-bottom: 1rem;
    }

    .content-card-header {
        padding: 1rem 1.25rem;
    }

    .content-card-header h2 {
        font-size: 1.0625rem;
    }

    .content-card-header h2 i {
        width: 20px !important;
        height: 20px !important;
    }

    .content-card-body {
        padding: 1.25rem;
    }

    .content-card-body p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    /* Feature List */
    .feature-list li {
        font-size: 0.9375rem;
    }

    .feature-list li i {
        width: 18px !important;
        height: 18px !important;
    }

    /* Features Grid */
    .features-grid {
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        width: 24px !important;
        height: 24px !important;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8125rem;
    }

    /* Contact Page */
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-label {
        font-size: 0.875rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    .form-hint {
        font-size: 0.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }

    .contact-info-item {
        padding: 0.875rem 0;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-info-icon i {
        width: 20px !important;
        height: 20px !important;
    }

    .contact-info-content h4 {
        font-size: 0.875rem;
    }

    .contact-info-content p {
        font-size: 0.8125rem;
    }

    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    /* Disclaimer List */
    .disclaimer-list li {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    /* Cron Page */
    .cron-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cron-stat {
        padding: 1rem;
    }

    .cron-stat-value {
        font-size: 1.5rem;
    }

    .cron-log {
        font-size: 0.75rem;
        padding: 0.875rem;
    }
}

/* Medium Mobile Devices (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .quake-item {
        flex-wrap: wrap;
    }

    .quake-item-info {
        flex: 1 1 calc(100% - 80px);
    }

    .quake-item-status {
        width: 100%;
        margin-top: 0.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Tablet Portrait (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quake-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .quake-item-meta {
        gap: 0.75rem;
    }
}

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
    .nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        font-size: 0.9375rem;
    }

    .nav-link i {
        width: 20px !important;
        height: 20px !important;
    }

    .mobile-menu-btn {
        padding: 0.625rem;
    }

    .mobile-menu-btn i {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Touch-Friendly Interactions */
@media (hover: none) and (pointer: coarse) {
    .quake-item:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .stat-card:hover {
        transform: none;
    }

    .nav-link:hover {
        background: transparent;
    }

    .nav-link.active:hover {
        background: var(--bmkg-blue);
    }

    /* Larger tap targets */
    .btn {
        min-height: 44px;
    }

    .nav-link {
        min-height: 44px;
    }

    .form-input,
    .form-textarea {
        min-height: 48px;
    }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .page-header {
        padding: 1.5rem 0;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .view-all-btn,
    .btn,
    .table-actions {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .quake-magnitude,
    .quake-item-mag,
    .table-mag {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
