#alert-ticker-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999999;
    background: linear-gradient(to right, #d9534f, #c9302c);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: 600;
    padding: 0 16px;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

body.admin-bar #alert-ticker-container {
    top: 32px;
}

#alert-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-message {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #fff;
    cursor: default;
    user-select: none;
}

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