.tt-ticker-container {
    width: 100%;
    overflow: hidden;
    background: #f0f7ff; /* Light blue background to match BulletBlaster.com */
    color: #333;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border-top: 1px solid #d1e8ff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.tt-ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: tt-ticker-scroll 25s linear infinite;
    align-items: center;
}

.tt-ticker-wrapper:hover {
    animation-play-state: paused;
}

.tt-ticker-item {
    display: inline-block;
    padding: 8px 24px;
    margin: 0 15px;
    font-weight: 700;
    border-radius: 50px; /* Pill shape button */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.tt-ticker-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Red Button */
.tt-ticker-item:nth-child(3n+1) {
    background: #D62828;
    color: #fff;
}

/* White Button */
.tt-ticker-item:nth-child(3n+2) {
    background: #F1FAEE;
    color: #003049;
    border-color: #003049;
}

/* Blue Button */
.tt-ticker-item:nth-child(3n) {
    background: #003049;
    color: #fff;
}

.tt-ticker-item a {
    color: inherit;
    text-decoration: none;
}

.tt-ticker-item a:hover {
    text-decoration: none;
}

@keyframes tt-ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Admin Styles */
.tt-admin-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 20px;
    margin-top: 20px;
    max-width: 800px;
}

.tt-admin-item-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.tt-admin-item-row input {
    flex: 1;
}

.tt-remove-item {
    color: #d63638;
    cursor: pointer;
    text-decoration: none;
}

.tt-remove-item:hover {
    color: #9b2021;
}
