.cct-timer-wrapper {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 100%;
}

.cct-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: inherit;
}

.cct-message {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
}

.cct-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cct-box {
    min-width: 80px;
    padding: 15px 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.cct-box span {
    display: block;
}

.cct-day,
.cct-hour,
.cct-minute,
.cct-second {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.cct-label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive styles */
@media (max-width: 480px) {
    .cct-timer {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 5px;
    }

    .cct-box {
        min-width: 60px;
        padding: 10px 5px;
    }

    .cct-day,
    .cct-hour,
    .cct-minute,
    .cct-second {
        font-size: 1.5em;
    }

    .cct-label {
        font-size: 0.5em;
    }
}

/* Animation for number changes */
.cct-box span {
    transition: all 0.2s ease;
}

.cct-box span.animate {
    transform: scale(1.1);
} 