/* Global Styles - Windows 11 Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Windows 11 official colors */
    --win11-bg: #f2f2f2;
    --win11-accent: #0067c0;
    --win11-accent-hover: #005fb3;
    --win11-card-bg: rgba(252, 252, 252, 0.85);
    --win11-sidebar-bg: rgba(242, 242, 242, 0.8);
    --win11-text: #202020;
    --win11-text-light: #5f5f5f;
    --win11-border: rgba(0, 0, 0, 0.06);
    --win11-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    --win11-radius: 8px; /* Windows 11 uses 8px for most elements */
    --win11-mica: rgba(252, 252, 252, 0.7); /* Mica material effect */
}

body {
    background-color: var(--discord-bg);
    color: var(--discord-text);
    line-height: 1.6;
    background-image: url('https://wallpaperaccess.com/full/2825704.gif');
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    font-weight: 400;
    transition: background-position 0.5s ease;
    animation: slowBgMove 60s ease-in-out infinite alternate;
}

@keyframes slowBgMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Windows 11 Container Layout */
.win11-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Discord-like Sidebar */
.win11-sidebar {
    width: 280px;
    background-color: #2f3136; /* Discord sidebar color */
    padding: 12px 0;
    height: 100%;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.sidebar-header {
    padding: 8px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.sidebar-header h2 {
    color: var(--discord-accent);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-menu {
    padding: 8px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 2px 8px;
    border-radius: var(--discord-radius);
    font-weight: 500;
    color: var(--discord-text-muted);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--discord-text);
}

.menu-item.active {
    background-color: rgba(88, 101, 242, 0.15);
    color: var(--discord-text);
}

.menu-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: var(--discord-accent);
    border-radius: 0 2px 2px 0;
}

.menu-item i {
    font-size: 16px;
    margin-right: 16px;
    width: 20px;
    text-align: center;
    color: var(--discord-accent);
    transition: transform 0.2s ease;
}

.menu-item:hover i {
    transform: scale(1.1);
}

/* Discord-like Content Area */
.win11-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    height: 100%;
    background-color: var(--discord-bg);
    position: relative;
}

.win11-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
}

.win11-header {
    background-color: transparent;
    color: var(--discord-text);
    padding: 0 0 16px 0;
    margin-bottom: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.win11-header h1 {
    font-weight: 600;
    font-size: 24px;
    color: var(--discord-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Tab Content Styles */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Discord-like Card Styles */
.win11-card {
    background-color: var(--discord-card);
    border-radius: var(--discord-radius);
    box-shadow: var(--discord-shadow);
    padding: 20px 24px;
    margin-bottom: 16px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    position: relative;
    overflow: hidden;
    color: var(--discord-text);
}

.win11-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: var(--discord-card-hover);
}

.win11-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--discord-accent), var(--discord-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.win11-card:hover::before {
    transform: scaleX(1);
}

.win11-card h2 {
    color: var(--discord-text);
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
}

.win11-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--discord-accent);
    border-radius: 1px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--discord-text);
    text-align: center;
    margin-top: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.win11-card:hover .stat-value {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Animation for scrolling numbers */
.stat-value {
    position: relative;
    height: 50px;
    min-height: 50px; /* Ensure minimum height */
    overflow: hidden;
    display: flex; /* Use flexbox for better alignment */
    align-items: center; /* Center digits vertically */
    justify-content: center; /* Center digits horizontally */
    font-size: 24px; /* Base font size */
    font-weight: bold; /* Bold text */
    margin: 10px 0; /* Add some margin */
}

.stat-value .digit-wrapper {
    display: inline-block;
    height: 50px;
    width: 25px; /* Fixed width for each digit */
    overflow: hidden;
    position: relative;
    margin: 0 2px; /* Add some spacing between digits */
    vertical-align: top; /* Ensure consistent vertical alignment */
}

.stat-value .digit-column {
    position: absolute;
    width: 20px;
    transition: transform 1s ease-in-out;
    will-change: transform; /* Hint to the browser that transform will change */
    transform-style: preserve-3d; /* Better 3D rendering */
    backface-visibility: hidden; /* Prevent flickering */
}

.stat-value .digit {
    height: 50px;
    width: 30px; /* Match the width of the wrapper */
    line-height: 50px;
    text-align: center;
    font-size: 24px; /* Ensure the font size is appropriate */
    font-weight: bold; /* Make the digits more visible */
    color: var(--discord-text); /* Use theme color */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Add subtle text shadow */
    user-select: none; /* Prevent text selection */
    position: relative; /* For potential pseudo-elements */
}

.stat-value.animating {
    will-change: transform;
    /* Add a subtle transition for the entire counter */
    transition: all 0.3s ease-in-out;
}

/* Table Styles - Discord-like */
.table-container {
    overflow-x: auto;
    border-radius: var(--discord-radius);
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--discord-radius);
    overflow: hidden;
    font-size: 14px;
    color: var(--discord-text);
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background-color: rgba(88, 101, 242, 0.1);
    font-weight: 600;
    color: var(--discord-text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

tr {
    transition: background-color 0.2s ease;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Add animation for new rows */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

tbody tr {
    animation: fadeIn 0.3s ease forwards;
}

/* Player Head Styles */
.player-head {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    display: block;
    margin: 0 auto;
}

.player-head:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Discord-like Variables */
:root {
    /* Adding Discord-like colors */
    --discord-bg: #36393f;
    --discord-card: #2f3136;
    --discord-card-hover: #40444b;
    --discord-text: #dcddde;
    --discord-text-muted: #72767d;
    --discord-accent: #5865f2;
    --discord-accent-hover: #4752c4;
    --discord-green: #43b581;
    --discord-red: #f04747;
    --discord-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    --discord-radius: 5px;
}

/* Recent Bans Styles */
.recent-bans {
    margin-top: 8px;
    background-color: var(--discord-card);
    border-radius: var(--discord-radius);
    padding: 12px;
    box-shadow: var(--discord-shadow);
}

.recent-ban-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
    animation: fadeIn 0.3s ease forwards;
}

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

.recent-ban-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.recent-ban-player {
    display: flex;
    align-items: center;
    flex: 1;
}

.recent-ban-head {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    margin-right: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.recent-ban-head:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.recent-ban-info {
    flex: 1;
}

.recent-ban-username {
    font-weight: 600;
    color: var(--discord-text);
    margin-bottom: 2px;
}

.recent-ban-date {
    font-size: 12px;
    color: var(--discord-text-muted);
}

/* Banned Players Styles - Discord-like */
.banned-players {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 8px;
    will-change: transform, opacity;
}

.banned-player-card {
    background-color: var(--discord-card);
    border-radius: var(--discord-radius);
    box-shadow: var(--discord-shadow);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background-color, opacity;
    color: var(--discord-text);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
}

/* Animation when cards become visible */
.banned-player-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.banned-player-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: var(--discord-card-hover);
}

.banned-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--discord-accent), var(--discord-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.banned-player-card:hover::before {
    transform: scaleX(1);
}

.player-skin {
    width: 80px;
    height: 160px;
    margin-bottom: 12px;
    border-radius: var(--discord-radius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    will-change: transform;
    background-color: rgba(0, 0, 0, 0.2);
    /* Add loading animation */
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.banned-player-card:hover .player-skin {
    transform: scale(1.05);
}

.player-name {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--discord-text);
    font-size: 16px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unban-date {
    color: var(--discord-red);
    margin-bottom: 8px;
    font-size: 13px;
    text-align: center;
    width: 100%;
}

.countdown {
    font-size: 13px;
    color: var(--discord-text-muted);
    margin-bottom: 12px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: 3px;
    width: 100%;
    transition: background-color 0.2s ease;
}

.banned-player-card:hover .countdown {
    background-color: rgba(0, 0, 0, 0.3);
}

.view-details-btn {
    background-color: var(--discord-accent);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.view-details-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.view-details-btn:hover {
    background-color: var(--discord-accent-hover);
}

.view-details-btn:active {
    transform: translateY(1px);
}

.view-details-btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Modal Styles - Discord-like */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--discord-card);
    margin: 8% auto;
    padding: 24px;
    border-radius: var(--discord-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 600px;
    position: relative;
    border: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: var(--discord-text);
}

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

/* Loading animation for player skin in modal */
.player-skin-large.loading {
    animation: pulse 1.5s infinite alternate;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Loading animation for player skin */
.player-skin.loaded {
    animation: none;
}

.close-modal {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--win11-text-light);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--win11-text);
}

.modal-content h2 {
    color: var(--win11-text);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--win11-border);
}

.ban-details-container {
    margin-top: 8px;
}

.ban-details-header {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}

.player-skin-large {
    width: 100px;
    height: 200px;
    border-radius: var(--discord-radius);
    margin-right: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

.player-skin-large:hover {
    transform: scale(1.05);
}

.ban-details-info {
    flex: 1;
}

.ban-details-info h3 {
    margin-bottom: 12px;
    color: var(--discord-text);
    font-weight: 600;
    font-size: 18px;
}

.ban-details-info p {
    margin-bottom: 8px;
    color: var(--discord-text);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.ban-details-info p::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--discord-accent);
    border-radius: 50%;
    margin-right: 8px;
}

.ban-details-body {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.ban-duration, .ban-date, .ban-countdown {
    flex: 1;
    min-width: 200px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: var(--discord-radius);
    border: none;
    transition: background-color 0.2s ease;
}

.ban-duration:hover, .ban-date:hover, .ban-countdown:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.ban-duration h4, .ban-date h4, .ban-countdown h4 {
    margin-bottom: 12px;
    color: var(--discord-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

.ban-duration h4::after, .ban-date h4::after, .ban-countdown h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--discord-accent);
    border-radius: 1px;
}

.ban-duration p, .ban-date p, .ban-countdown p {
    font-size: 14px;
    color: var(--discord-text-muted);
}

/* Pagination Styles - Discord-like */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    background-color: var(--discord-accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.pagination-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--discord-accent-hover);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.pagination-btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(88, 101, 242, 0.5);
}

.page-indicator {
    margin: 0 16px;
    font-size: 14px;
    color: var(--discord-text);
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 3px;
}

/* Responsive Styles - Windows 11 */
@media (max-width: 768px) {
    .win11-container {
        flex-direction: column;
    }

    .win11-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--win11-border);
        padding: 8px 0;
    }

    .sidebar-header {
        padding: 8px 16px 12px;
        margin-bottom: 4px;
    }

    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        padding: 8px 0;
        -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
        scrollbar-width: none;  /* Hide scrollbar in Firefox */
    }

    .sidebar-menu::-webkit-scrollbar {
        display: none;  /* Hide scrollbar in Chrome, Safari and Opera */
    }

    .menu-item {
        flex-direction: column;
        padding: 8px 12px;
        margin: 0 4px;
        text-align: center;
        min-width: 80px;
    }

    .menu-item i {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .menu-item.active::before {
        display: none;
    }

    .menu-item.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 3px;
        background-color: var(--win11-accent);
        border-radius: 2px 2px 0 0;
    }

    .win11-content {
        height: calc(100vh - 120px);
        padding: 16px;
    }

    .win11-header {
        padding: 0 0 12px 0;
        margin-bottom: 12px;
    }

    .win11-header h1 {
        font-size: 20px;
    }

    .banned-players {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }

    .stat-value {
        font-size: 32px;
        margin-top: 12px;
    }

    .win11-card {
        padding: 16px;
    }

    .win11-card h2 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }

    .ban-details-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 16px;
    }

    .player-skin-large {
        margin-right: 0;
        margin-bottom: 16px;
        width: 80px;
        height: 160px;
    }

    .ban-details-info p {
        justify-content: center;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
        margin: 10% auto;
    }

    .ban-details-body {
        flex-direction: column;
        gap: 12px;
    }

    .ban-duration, .ban-countdown {
        min-width: 100%;
    }

    /* Responsive pagination */
    .pagination-container {
        flex-direction: column;
        gap: 12px;
        padding-top: 12px;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .page-indicator {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}

/* Notification System */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: 300px;
}

.notification {
    background-color: var(--discord-card);
    color: var(--discord-text);
    border-radius: var(--discord-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.3s ease forwards;
    border-left: 3px solid var(--discord-accent);
}

.notification.success {
    border-left-color: var(--discord-green);
}

.notification.error {
    border-left-color: var(--discord-red);
}

.notification.closing {
    animation: slideOutRight 0.3s ease forwards;
}

.notification-content {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.notification-time-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--discord-accent);
    width: 100%;
    transform-origin: left;
}

.notification.success .notification-time-bar {
    background-color: var(--discord-green);
}

.notification.error .notification-time-bar {
    background-color: var(--discord-red);
}

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

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

@keyframes timeBarShrink {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}
