#simple-ticker-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
}

#simple-ticker-datetime {
    padding: 10px 20px;
    font-size: 11px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

#ticker-time {
    font-weight: bold;
}

#ticker-date {
    opacity: 0.9;
}

#simple-ticker-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    padding: 10px 0;
}

#simple-ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding: 0 20px;
    animation: none;
}

#simple-ticker-content a {
    color: inherit;
    text-decoration: none;
}

#simple-ticker-content a:hover {
    text-decoration: none;
}

/* Mobile Button Styles */
#simple-ticker-mobile-buttons {
    display: none; /* Hidden by default, shown only on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.simple-ticker-button {
    display: flex; /* Use flex to perfectly center text */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 50%;
    text-align: center;
    padding: 0; /* Remove padding to avoid affecting computed height */
    line-height: normal; /* Prevent line-height from conflicting with inline height */
    font-weight: bold;
    text-decoration: none;
    float: left;
    border: none;
}

.simple-ticker-button:hover,
.simple-ticker-button:focus {
    opacity: 0.9;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    #simple-ticker-datetime {
        min-width: 150px;
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    #simple-ticker-wrapper {
        display: none; /* Hide ticker on mobile */
    }
    
    #simple-ticker-mobile-buttons {
        display: flex; /* Show buttons on mobile */
    }
    
    #simple-ticker-datetime {
        min-width: 120px;
        padding: 8px;
    }
}
