/* 
   SoftPay Wallet - Premium Global Design System 
   v2.0.0
*/

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

:root {
    /* ------------------------------
       Color Palette (Modern Fintech)
       ------------------------------ */
    --primary: #472097;
    /* Brand Purple */
    --primary-dark: #34186f;
    /* Brand Purple Dark */
    --primary-light: #5c2cc5;
    /* Brand Purple Light */
    --primary-soft: #eeebf9;
    /* Brand Purple Soft */

    --secondary: #64748b;
    /* Slate 500 */

    --success: #10b981;
    /* Emerald 500 */
    --success-soft: #d1fae5;

    --danger: #ef4444;
    /* Red 500 */
    --danger-soft: #fee2e2;

    --warning: #f59e0b;
    /* Amber 500 */
    --warning-soft: #fef3c7;

    --info: #3b82f6;
    /* Blue 500 */
    --info-soft: #dbeafe;

    /* Neutrals */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */

    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */

    --border: #e2e8f0;
    /* Slate 200 */
    --border-light: #f1f5f9;
    /* Slate 100 */

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

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 10px;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Font */
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.75rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ------------------------------
   Typography Utilities
   ------------------------------ */
.fw-bold {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-white {
    color: #fff !important;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}



/* ------------------------------
   Core Components
   ------------------------------ */

/* Cards */


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 12px -1px rgba(99, 102, 241, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary-soft);
}

.btn-outline-danger {
    background: transparent;
    border-color: var(--danger);
    color: var(--danger);
}

.btn-outline-danger:hover {
    background: var(--danger-soft);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: var(--radius-md);
}

.rounded-pill {
    border-radius: 9999px;
}

/* Inputs */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    min-height: 52px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.bg-light-soft {
    background: var(--border-light);
}

/* Search Box */
.search-wrapper {
    position: relative;
}

.search-wrapper input {
    background: var(--bg-body);
    border: none;
    padding-left: 2.8rem;
    padding-right: 1rem;
    height: 46px;
    width: 100%;
    max-width: 320px;
    border-radius: 99px;
    transition: all 0.2s;
}

.search-wrapper input:focus {
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-soft);
    max-width: 360px;
}

.search-icon {
    z-index: 10;
    pointer-events: none;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--border-light);
    background: #fafbfc;
}

.table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 0.9rem;
}

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

.table tr:hover td {
    background-color: #fafbfc;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.8em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--radius-md);
}

.badge-soft {
    border-radius: 99px;
    padding: 6px 14px;
}

.bg-success-soft {
    background-color: var(--success-soft) !important;
    color: var(--success) !important;
}

.bg-danger-soft {
    background-color: var(--danger-soft) !important;
    color: var(--danger) !important;
}

.bg-warning-soft {
    background-color: var(--warning-soft) !important;
    color: var(--warning) !important;
}

.bg-primary-soft {
    background-color: var(--primary-soft) !important;
    color: var(--primary) !important;
}

/* Avatars */
.avatar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.avatar-md {
    width: 48px;
    height: 48px;
    font-size: 1rem;
}



/* Utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.d-none {
    display: none;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.m-0 {
    margin: 0;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ms-3 {
    margin-left: 1rem;
}

.ms-auto {
    margin-left: auto;
}

.me-2 {
    margin-right: 0.5rem;
}

.p-0 {
    padding: 0 !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

/* Grid System (Simplified) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.col-12,
.col-md-7,
.col-md-5,
.col-sm-6,
.col-xl-3,
.col-lg-8,
.col-lg-4,
.col-md-6,
.col-md-4 {
    padding: 12px;
}

.col-12 {
    width: 100%;
}

.col-sm-6 {
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm-6 {
        width: 50%;
    }
}

.col-md-6 {
    width: 100%;
}

.col-md-4 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.333%;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }

    .col-md-7 {
        width: 58.333%;
    }

    .col-md-5 {
        width: 41.666%;
    }

    .col-md-6 {
        width: 50%;
    }

    .text-md-end {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        width: 25%;
    }

    .col-lg-8 {
        width: 66.666%;
    }

    .col-lg-4 {
        width: 33.333%;
    }
}

/* Visibility */
.d-lg-flex {
    display: none;
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex;
    }
}

/* Icons styling helper */
[data-lucide] {
    vertical-align: middle;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ------------------------------
   Additional Utilities & Overrides
   ------------------------------ */
.border-0 {
    border: 0 !important;
}

.border-start {
    border-left: 1px solid var(--border-light) !important;
}

.border-end {
    border-right: 1px solid var(--border-light) !important;
}

.border-top {
    border-top: 1px solid var(--border-light) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-light) !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-3 {
    border-radius: var(--radius-lg) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-light {
    background-color: var(--bg-body) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.text-end {
    text-align: right !important;
}

.text-start {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.start-0 {
    left: 0 !important;
}

.start-100 {
    left: 100% !important;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

/* ------------------------------
   Pagination
   ------------------------------ */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    align-items: center;
}

.page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.2s;
    font-weight: 500;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0.25rem;
}

.page-link:hover {
    z-index: 2;
    color: var(--primary);
    background-color: var(--primary-soft);
    border-color: var(--primary-soft);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.page-item.disabled .page-link {
    color: var(--text-light);
    pointer-events: none;
    background-color: transparent;
    border-color: transparent;
}

.page-link.rounded-circle {
    border-radius: 50% !important;
}

/* ------------------------------
   Modal Components
   ------------------------------ */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal.show {
    display: flex;
    pointer-events: auto;
}

.modal-dialog {
    background: var(--bg-card);
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    margin: 20px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

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

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Detail Item Style */
.detail-item {
    margin-bottom: 16px;
}

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

.detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    word-break: break-all;
}

/* ------------------------------
   Compact Table Overrides
   ------------------------------ */
.table th,
.table td {
    padding: 0.5rem 0.75rem !important;
    white-space: nowrap;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    /* Space for scrollbar */
}

/* Custom Scrollbar for Table */
.table-responsive::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: var(--bg-body);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
    opacity: 0.5;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ------------------------------
   New Modal Utilities
   ------------------------------ */
.modal-lg {
    max-width: 900px;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.bg-info-soft {
    background-color: var(--info-soft);
}

.text-info {
    color: var(--info);
}

.bg-secondary-soft {
    background-color: #f1f5f9;
    /* Slate 100 */
}

.text-secondary {
    color: var(--secondary);
}

.bg-warning-soft {
    background-color: var(--warning-soft);
}

.text-warning {
    color: var(--warning);
}

/* ------------------------------
   Mobile Table Optimizations
   ------------------------------ */
/* Allow User Details column to wrap on mobile to save width */
#usersTable td:nth-child(2) {
    white-space: normal !important;
    min-width: 150px;
}

/* ------------------------------
   Premium Modal Polish
   ------------------------------ */
.modal-hero {
    background: linear-gradient(135deg, var(--bg-body) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-soft) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.avatar-ring {
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--primary-soft);
}

.copy-btn {
    opacity: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    color: var(--text-light);
}

.detail-row:hover .copy-btn {
    opacity: 1;
}

.copy-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md) !important;
}

/* ------------------------------
   Missing Polish Utilities
   ------------------------------ */
.tracking-wider {
    letter-spacing: 0.05em;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.opacity-10 {
    opacity: 0.1;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* ------------------------------
   Notification System
   ------------------------------ */
.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    margin-top: 10px;
    z-index: 1100;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: top right;
    animation: slideIn 0.2s ease-out;
}

.notification-dropdown.show {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.notification-header {
    padding: 12px 16px;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.notification-item:hover {
    background: var(--bg-body);
}

.notification-item.unread {
    background: var(--primary-soft-bg, #f5f3ff);
}

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

.notification-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.notification-msg {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.notification-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 4px;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--danger);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.notification-badge.active {
    display: flex;
}

/* ------------------------------
   Notification System
   ------------------------------ */
.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    margin-top: 10px;
    z-index: 1100;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: top right;
    animation: slideIn 0.2s ease-out;
}

.notification-dropdown.show {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.notification-header {
    padding: 12px 16px;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.notification-item:hover {
    background: var(--bg-body);
}

.notification-item.unread {
    background: var(--primary-soft-bg, #f5f3ff);
}

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

.notification-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.notification-msg {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

flcwd.notification-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 4px;
}

.notification-indicator {
    display: none;
    /* Hidden by default */
}

.notification-indicator.active {
    display: block;
}