/* ===== ADMIN RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --a-bg: #0f1117;
    --a-surface: #1a1d27;
    --a-surface2: #232735;
    --a-border: #2e3345;
    --a-text: #e4e6f0;
    --a-text2: #8a8fa8;
    --a-accent: #FFE500;
    --a-accent2: #E6CE00;
    --a-blue: #3b82f6;
    --a-green: #22c55e;
    --a-red: #ef4444;
    --a-purple: #a855f7;
    --a-radius: 10px;
    --a-transition: 0.2s ease;
}

body { font-family: 'Inter', sans-serif; background: var(--a-bg); color: var(--a-text); line-height: 1.5; }
a { color: inherit; text-decoration: none; }

/* ===== LOGIN ===== */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--a-bg);
    padding: 20px;
}

.login-card {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo { margin-bottom: 20px; }

.login-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.login-card > p {
    color: var(--a-text2);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.login-field {
    text-align: left;
    margin-bottom: 20px;
}

.login-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--a-text2);
}

.login-field input {
    width: 100%;
    padding: 12px 16px;
    background: var(--a-bg);
    border: 1px solid var(--a-border);
    border-radius: var(--a-radius);
    color: var(--a-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border var(--a-transition);
}

.login-field input:focus {
    outline: none;
    border-color: var(--a-accent);
}

.login-error {
    display: none;
    color: var(--a-red);
    font-size: 0.8rem;
    margin-top: 6px;
}

.login-error.show { display: block; }

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--a-accent);
    color: #111;
    border: none;
    border-radius: var(--a-radius);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--a-transition);
}

.login-btn:hover { background: var(--a-accent2); }

.login-back {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--a-text2);
    transition: color var(--a-transition);
}

.login-back:hover { color: var(--a-accent); }

/* ===== ADMIN LAYOUT ===== */
.admin-app {
    display: none;
    min-height: 100vh;
}

.admin-app.active {
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: var(--a-surface);
    border-right: 1px solid var(--a-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: transform var(--a-transition);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid var(--a-border);
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-nav {
    flex: 1;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--a-text2);
    transition: all var(--a-transition);
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.sidebar-link:hover {
    background: var(--a-surface2);
    color: var(--a-text);
}

.sidebar-link.active {
    background: rgba(255, 229, 0, 0.1);
    color: var(--a-accent);
}

.sidebar-link.active svg { stroke: var(--a-accent); }

.sidebar-footer {
    padding: 12px 8px;
    border-top: 1px solid var(--a-border);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-logout { color: var(--a-red) !important; }

/* Main area */
.admin-main {
    flex: 1;
    margin-left: 250px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-bottom: 1px solid var(--a-border);
    background: var(--a-surface);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-page-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--a-text);
    cursor: pointer;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--a-text2);
}

.admin-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--a-accent);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Sections */
.admin-section {
    display: none;
    padding: 28px 32px;
}

.admin-section.active { display: block; }

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: var(--a-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.stat-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-blue { background: rgba(59,130,246,0.15); color: var(--a-blue); }
.stat-icon-blue svg { stroke: var(--a-blue); }
.stat-icon-yellow { background: rgba(255,229,0,0.12); color: var(--a-accent); }
.stat-icon-yellow svg { stroke: var(--a-accent); }
.stat-icon-green { background: rgba(34,197,94,0.15); color: var(--a-green); }
.stat-icon-green svg { stroke: var(--a-green); }
.stat-icon-purple { background: rgba(168,85,247,0.15); color: var(--a-purple); }
.stat-icon-purple svg { stroke: var(--a-purple); }

.stat-info { flex: 1; }
.stat-value { display: block; font-size: 1.4rem; font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--a-text2); }
.stat-trend { position: absolute; top: 16px; right: 16px; font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.stat-up { background: rgba(34,197,94,0.15); color: var(--a-green); }
.stat-neutral { background: var(--a-surface2); color: var(--a-text2); }

/* ===== CARDS & TABLES ===== */
/* Traffic Chart */
.chart-card {
    margin-bottom: 20px;
}

.chart-body {
    padding: 20px;
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--a-text2);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot-blue { background: var(--a-blue); }
.legend-dot-yellow { background: var(--a-accent); }

.chart-container {
    position: relative;
    width: 100%;
    height: 260px;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.admin-card {
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: var(--a-radius);
    overflow: hidden;
}

.card-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--a-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-header h3 { font-size: 0.95rem; font-weight: 600; }

.card-filters {
    display: flex;
    gap: 4px;
}

.filter-btn {
    padding: 5px 12px;
    background: none;
    border: 1px solid var(--a-border);
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--a-text2);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--a-transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--a-accent);
    color: #111;
    border-color: var(--a-accent);
}

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

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--a-text2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--a-border);
}

.admin-table td {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--a-border);
}

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

.admin-table tr:hover { background: var(--a-surface2); }

.table-thumb {
    width: 48px; height: 36px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}

.table-actions {
    display: flex;
    gap: 6px;
}

.td-truncate {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-icon {
    width: 32px; height: 32px;
    border-radius: 6px;
    border: 1px solid var(--a-border);
    background: none;
    color: var(--a-text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--a-transition);
}

.btn-icon:hover { background: var(--a-surface2); color: var(--a-text); }
.btn-icon-danger:hover { background: rgba(239,68,68,0.15); color: var(--a-red); border-color: var(--a-red); }

/* Badges */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new { background: rgba(59,130,246,0.15); color: var(--a-blue); }
.badge-progress { background: rgba(255,229,0,0.12); color: var(--a-accent2); }
.badge-done { background: rgba(34,197,94,0.15); color: var(--a-green); }

/* Statut badges for dashboard table */
.badge-nouvelle { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-traite { background: rgba(139,92,246,0.15); color: #a78bfa; }
.badge-relance { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-encours { background: rgba(6,182,212,0.15); color: #22d3ee; }
.badge-signe { background: rgba(34,197,94,0.15); color: #22c55e; }
.badge-termine { background: rgba(107,114,128,0.15); color: #9ca3af; }
.badge-perdu { background: rgba(239,68,68,0.15); color: #f87171; }

/* Reviews */
.recent-reviews { padding: 16px 20px; }

.review-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--a-border);
}

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

.review-stars, .review-stars-sm { color: #f59e0b; }
.review-stars { font-size: 0.9rem; margin-bottom: 4px; }
.review-stars-sm { font-size: 0.8rem; }

.review-item p { font-size: 0.85rem; color: var(--a-text); margin: 4px 0; }
.review-author { font-size: 0.78rem; color: var(--a-text2); }

/* Section toolbar */
.section-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-toolbar h3 {
    font-size: 1.1rem;
    color: var(--a-text);
}

/* Admin buttons */
.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all var(--a-transition);
}

.btn-admin-primary {
    background: var(--a-accent);
    color: #111;
}

.btn-admin-primary:hover { background: var(--a-accent2); }

.btn-admin-ghost {
    background: none;
    border: 1px solid var(--a-border);
    color: var(--a-text2);
}

.btn-admin-ghost:hover { background: var(--a-surface2); color: var(--a-text); }

/* ===== SETTINGS ===== */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.settings-grid > .admin-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
}

.admin-form { padding: 20px; }

.form-row { margin-bottom: 16px; }

.form-row label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--a-text2);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--a-bg);
    border: 1px solid var(--a-border);
    border-radius: 8px;
    color: var(--a-text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border var(--a-transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--a-accent);
}

.form-row select option { background: var(--a-surface); }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Checkbox label */
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===== MODAL ===== */
.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.admin-modal.open {
    display: flex;
}

.admin-modal-backdrop,
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.admin-modal-content,
.modal-content {
    position: relative;
    background: var(--a-surface);
    border: 1px solid var(--a-border);
    border-radius: 14px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-modal-header,
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--a-border);
}

.admin-modal-header h3,
.modal-header h3 { font-size: 1rem; font-weight: 600; }

.admin-modal-close,
.modal-close {
    background: none;
    border: none;
    color: var(--a-text2);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.admin-modal-body,
.modal-body { padding: 20px; }

.admin-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid var(--a-border);
}

/* ===== KANBAN BOARD ===== */
.kanban-toolbar { margin-bottom: 20px; }

.kanban-search {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    background: var(--a-bg);
    border: 1px solid var(--a-border);
    border-radius: 8px;
    color: var(--a-text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border var(--a-transition);
}

.kanban-search:focus {
    outline: none;
    border-color: var(--a-accent);
}

.kanban-board {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    min-height: 500px;
}

.kanban-column {
    min-width: 200px;
    flex: 1;
    background: var(--a-surface);
    border-radius: var(--a-radius);
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.kanban-column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--a-border);
}

.kanban-column-header h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--a-text2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.kanban-count {
    background: var(--a-surface2);
    color: var(--a-text2);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

.kanban-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-nouvelle { background: #3b82f6; }
.dot-traite { background: #8b5cf6; }
.dot-relance { background: #f59e0b; }
.dot-encours { background: #06b6d4; }
.dot-signe { background: #22c55e; }
.dot-termine { background: #6b7280; }
.dot-perdu { background: #ef4444; }

.kanban-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 60px;
}

.kanban-card {
    background: var(--a-surface2);
    border: 1px solid var(--a-border);
    border-radius: 8px;
    padding: 12px;
    cursor: grab;
    transition: all 0.15s;
}

.kanban-card:hover { border-color: var(--a-accent); }
.kanban-card:active { cursor: grabbing; }
.kanban-card.dragging { opacity: 0.4; }

.kanban-column.drag-over {
    background: rgba(255,229,0,0.05);
    border: 1px dashed var(--a-accent);
}

.kanban-card-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--a-text);
    margin-bottom: 4px;
}

.kanban-card-prestation {
    font-size: 0.78rem;
    color: var(--a-text2);
    margin-bottom: 6px;
}

.kanban-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--a-text2);
}

/* ===== DEVIS DETAIL MODAL ===== */
.modal-lg { max-width: 700px; }

.devis-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.devis-detail-info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
}

.devis-detail-info dt {
    font-weight: 600;
    color: var(--a-text2);
    font-size: 0.82rem;
}

.devis-detail-info dd {
    color: var(--a-text);
    font-size: 0.88rem;
}

.devis-detail-notes h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.notes-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.note-item {
    background: var(--a-surface);
    border-radius: 8px;
    padding: 10px 12px;
}

.note-item-date {
    font-size: 0.72rem;
    color: var(--a-text2);
    margin-bottom: 4px;
}

.note-item-text {
    font-size: 0.85rem;
    color: var(--a-text);
    line-height: 1.5;
}

.note-add textarea {
    width: 100%;
    margin-bottom: 8px;
    padding: 10px 14px;
    background: var(--a-bg);
    border: 1px solid var(--a-border);
    border-radius: 8px;
    color: var(--a-text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border var(--a-transition);
}

.note-add textarea:focus {
    outline: none;
    border-color: var(--a-accent);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* ===== PHOTO PREVIEW ===== */
.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.photo-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-item .photo-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CAMPAIGN STYLES ===== */
.badge-draft { background: rgba(139,92,246,0.15); color: #a78bfa; }
.badge-sent { background: rgba(34,197,94,0.15); color: #22c55e; }
.badge-error { background: rgba(239,68,68,0.15); color: #ef4444; }

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--a-border);
    padding: 16px 20px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--a-text2);
    font-size: 0.9rem;
}

/* ===== CONTENT FORM ===== */
.content-form .form-row { margin-bottom: 16px; }

.content-form .form-row label {
    display: block;
    font-size: 0.82rem;
    color: var(--a-text2);
    margin-bottom: 4px;
}

.content-form .form-row input,
.content-form .form-row textarea { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .settings-grid { grid-template-columns: 1fr; }
    .settings-grid > .admin-card:last-child { max-width: 100%; }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-toggle { display: block; }

    .admin-main { margin-left: 0; }

    .admin-header { padding: 12px 16px; }

    .admin-section { padding: 16px; }

    .stats-grid { grid-template-columns: 1fr; }

    .admin-table { font-size: 0.8rem; }
    .admin-table th, .admin-table td { padding: 8px 10px; }

    .form-row-2 { grid-template-columns: 1fr; }

    /* Responsive kanban */
    .kanban-board { flex-direction: column; }
    .kanban-column { min-width: auto; }
    .devis-detail-grid { grid-template-columns: 1fr; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--a-surface);
    border: 1px solid var(--a-accent);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-enter { transform: translateX(100%); opacity: 0; }
.toast-exit { transform: translateX(100%); opacity: 0; }

.toast-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.toast-body { flex: 1; min-width: 0; }

.toast-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--a-accent);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 0.82rem;
    color: var(--a-text);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toast-close {
    background: none;
    border: none;
    color: var(--a-text2);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.toast-close:hover { color: var(--a-text); }

/* ===== NOTIF BADGE ===== */
.notif-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--a-red);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    animation: notifPulse 0.4s ease;
}

@keyframes notifPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
