.sct-timer-wrapper {
    margin: 20px 0;
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
}

.sct-timer-container {
    display: inline-block;
    margin: 10px auto;
    width: auto;
}

.sct-timer {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.sct-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 5px;
    box-sizing: border-box;
}

.sct-number {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
    display: block;
    min-height: 1.2em;
}

.sct-label {
    font-size: 0.9em;
    text-transform: uppercase;
    display: block;
    min-height: 1em;
}

.sct-text-above,
.sct-text-below {
    text-align: center;
    margin: 10px 0;
    display: block;
    width: 100%;
}

.sct-shortcode-above,
.sct-shortcode-below {
    margin: 10px 0;
    text-align: center;
    display: block;
    width: 100%;
}

.sct-end-message {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
    padding: 10px;
    display: block;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .sct-timer {
        gap: 10px;
    }
    
    .sct-time-unit {
        min-width: 50px;
    }
}

