* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #141414;
    --border-color: #1F1F1F;
    --text-primary: #DCDCDC;
    --text-secondary: #666666;
    --accent-blue: #3b82f6;
    --accent-yellow: #f59e0b;
    --accent-red: #ef4444;
    --accent-purple: #a855f7;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
    margin-bottom: 0;
}

.seismic-wave {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 2px;
}

.wave-pulse {
    width: 3px;
    background: var(--text-primary);
    border-radius: 1px;
    opacity: 0.7;
}
.pulse-1 { height: 8px; animation: audioWave 1.2s ease-in-out infinite; }
.pulse-2 { height: 12px; animation: audioWave 1.5s ease-in-out infinite; }
.pulse-3 { height: 10px; animation: audioWave 1.8s ease-in-out infinite; }
.seismic-wave::before, .seismic-wave::after {
    content: ''; width: 3px; background: var(--text-secondary); border-radius: 1px; opacity: 0.5;
}
.seismic-wave::before { height: 6px; animation: audioWave 2.1s ease-in-out infinite; }
.seismic-wave::after { height: 9px; animation: audioWave 1.7s ease-in-out infinite; }

@keyframes audioWave {
    50% { transform: scaleY(1.5); opacity: 1; }
}

.loading-text {
    font-size: 14px;
    color: var(--text-secondary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    50% { opacity: 0.7; }
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.visible {
    opacity: 1;
}

.header {
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
}
.live-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-primary);
}
.live-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-primary);
}

.live-dot::before,
.live-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
}
.live-dot::before { animation-delay: 0s; }
.live-dot::after { animation-delay: 0.9s; }

@keyframes liveWave {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    60% { transform: translate(-50%, -50%) scale(2.6); opacity: 0.12; }
    100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}

@keyframes dotPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .live-indicator { display: none; }
}

.header-logo {
    height: 70px;
}

.nav-tabs {
    display: flex;
    background: var(--bg-primary);
    border-radius: 10px;
    padding: 5px;
    border: 1px solid var(--border-color);
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-tab:hover {
    color: var(--text-primary);
}

.nav-tab.active {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.refresh-btn:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.refresh-btn:active {
    transform: scale(0.95);
}

.main {
    padding: 40px 0;
}

.view { display: none; }
.view.active { display: block; }

.control-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
}

.stats-overview {
    display: flex;
    flex-grow: 1;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid var(--border-color);
}

.stats-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    margin-right: 8px;
}

.stat-item {
    text-align: center;
    min-width: 70px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    display: block;
}
.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.filters {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.filter-group label { font-size: 13px; color: var(--text-secondary); }
.filter-group .custom-select {
    position: relative;
    display: inline-block;
    width: 100px;
}
.filter-group select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px 14px;
    padding-right: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent), var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.06s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='%23DCDCDC' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.filter-group select:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent), var(--bg-tertiary);
}
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 6px 18px rgba(59,130,246,0.06);
    transform: translateY(-1px);
}
.filter-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.filter-group select::-ms-expand { display: none; }

.custom-dropdown {
    position: relative;
    user-select: none;
}
.custom-dropdown .cd-display {
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
    min-height: 36px;
}
.custom-dropdown .cd-display .cd-label { color: var(--text-primary); }
.custom-dropdown .cd-display .cd-arrow {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.custom-dropdown.open .cd-display .cd-arrow { transform: rotate(180deg); color: var(--text-primary); }
.custom-dropdown .cd-options {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    max-height: 220px;
    overflow: auto;
    z-index: 1200;
    padding: 4px;
}
.custom-dropdown .cd-option {
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-dropdown .cd-option:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.custom-dropdown .cd-option.active {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.filter-group select.native-hidden {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

.earthquake-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.earthquake-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.earthquake-item.new-item {
    border-left: 4px solid var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.pinned-section {
    margin-bottom: 12px;
}
.pinned-header h4 {
    font-size: 13px;
    color: var(--accent-red);
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.earthquake-item.pinned {
    border-left: 4px solid var(--accent-red);
    background: rgba(239, 68, 68, 0.04);
}

.earthquake-item:hover {
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.magnitude-display {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.magnitude-low { background: var(--text-primary); }
.magnitude-medium { background: var(--accent-yellow); }
.magnitude-high { background: var(--accent-red); }
.magnitude-severe { background: #b91c1c; }

.earthquake-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.earthquake-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.earthquake-location {
    font-size: 17px;
    font-weight: 600;
}
.earthquake-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.earthquake-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.detail-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

.earthquake-sources {
    display: flex;
    gap: 10px;
    align-items: center;
}
.source-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.source-bdtim { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }
.source-emsc { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }
.source-uoa { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }
.source-usgs { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }
.source-both { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }

.expandable-content {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease-in-out, opacity 0.4s ease, margin-top 0.6s ease-in-out;
    margin-top: 0;
}

.earthquake-item.expanded .expandable-content {
    max-height: 700px;
    opacity: 1;
    margin-top: 20px;
}

.expanded-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.source-detail {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.source-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.source-comparison h4, .map-wrapper h4 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.source-detail.bdtim h4 { color: var(--text-primary); }
.source-detail.emsc h4 { color: var(--text-primary); }
.source-detail.uoa h4 { color: var(--text-primary); }

.source-detail p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}
.source-detail p span {
    color: var(--text-primary);
    font-weight: 500;
}

.map-wrapper {
    margin-top: 15px;
}

.map-container {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease, margin-top 0.5s ease-in-out;
    border-radius: 8px;
    margin-top: 0;
}

.earthquake-item.expanded .map-container {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
}

.map-container .leaflet-container {
    height: 250px;
    width: 100%;
    border-radius: 8px;
}

.map-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.custom-div-icon {
    background: transparent;
    border: none;
}



.main-map {
    height: 600px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.main-map .leaflet-container {
    height: 100%;
    width: 100%;
}

.loading-earthquakes .loading-spinner {
    width: 40px; height: 40px; border: 3px solid var(--border-color);
    border-top-color: var(--accent-blue); border-radius: 50%;
    animation: spin 1s linear infinite; margin: 20px auto;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.no-earthquakes-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.deprem-uyarisi-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    z-index: 200;
}
.deprem-uyarisi-banner .no-earthquakes-card {
    max-width: 900px;
}

.no-earthquakes-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

.no-earthquakes-icon {
    margin-bottom: 20px;
}

.warning-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
}

.no-earthquakes-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.no-earthquakes-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.no-earthquakes-suggestion {
    color: var(--text-tertiary);
    font-size: 13px;
    margin: 0;
}

.load-more-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 10px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover:not(:disabled) {
    background: #1f1f1f;
    border-color: var(--border-color);
}

.load-more-btn:disabled {
    cursor: wait;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .control-panel {
        flex-direction: column;
        align-items: stretch;
    }
    .stats-overview {
        border-right: none;
        padding: 0 10px 20px 10px;
        border-bottom: 1px solid var(--border-color);
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 15px;
    }

    .filters {
        justify-content: space-around;
    }
    .header-content { flex-direction: column; }
    

    .main-map {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .earthquake-item { grid-template-columns: 1fr; text-align: center; }
    .magnitude-display { margin: 0 auto; }
    .earthquake-header { flex-direction: column; align-items: center; gap: 5px; }
    .earthquake-details { justify-content: center; }
}

l-cardio {
    margin: 0;
    margin-top: -15px;
}

.earthquake-popup .leaflet-popup-content-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
}

.earthquake-popup .leaflet-popup-tip {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.popup-content {
    padding: 5px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.popup-magnitude {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.popup-info {
    flex: 1;
}

.popup-location {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.popup-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.popup-sources {
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
}

.popup-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.popup-detail svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.popup-detail span {
    color: var(--text-primary);
}

.marker-cluster-minimal {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.marker-cluster-minimal div {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-weight: 600;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    line-height: 1;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
    -webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-in;
    -moz-transition: -moz-transform 0.2s ease-out, opacity 0.2s ease-in;
    -o-transition: -o-transform 0.2s ease-out, opacity 0.2s ease-in;
    transition: transform 0.2s ease-out, opacity 0.2s ease-in;
}

.new-data-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    min-width: 280px;
}

.new-data-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 18px;
}

.notification-text {
    flex: 1;
    color: var(--text-primary);
    font-size: 14px;
}

.new-count {
    color: var(--accent-blue);
    font-weight: 600;
}

.notification-btn {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.notification-btn:hover {
    background: #2563eb;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--text-primary);
}
.new-data-notification.bottom-center {
    top: auto;
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 120%);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    min-width: 320px;
    max-width: calc(100% - 40px);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.new-data-notification.bottom-center.show {
    transform: translate(-50%, 0);
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
}
.notification-magnitude {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--accent-red), #c2410c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.notification-body {
    flex: 1;
}
.notification-title {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}
.notification-sub {
    font-size: 13px;
    color: var(--text-secondary);
}
.notification-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}
.notification-close-x {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    padding: 6px 8px;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.notification-close-x:hover { color: var(--text-primary); background: rgba(255,255,255,0.02); }