#ps-topcountdown {
    background-color: #011b40; /* Kolor tła */
    color: #ffffff;            /* Kolor tekstu */
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    z-index: 9999; /* Bardzo wysoki indeks, by być nad wszystkim */
    position: relative; 
}

.ps-topcountdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ps-timer span {
    font-family: monospace;
    font-weight: 700;
    color: #ffcc00; /* Kolor cyfr */
}

/* Responsywność */
@media (max-width: 767px) {
    .ps-topcountdown-content {
        flex-direction: column;
        gap: 5px;
    }
}