#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;
}

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

@media screen and (max-width: 480px) {
    #simple-ticker-datetime {
        min-width: 120px;
        padding: 8px;
    }
}
