.ct-timer-container {
    background-color: #ffeaea;
    border: 1px solid #ffcaca;
    border-radius: 6px;
    padding: 12px 20px;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.05);
}

.ct-timer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-icon {
    font-size: 20px;
    animation: ct-bounce 1s infinite alternate;
}

.ct-text {
    font-size: 16px;
    color: #d32f2f;
    font-weight: 500;
}

.ct-countdown {
    background-color: #d32f2f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes ct-bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-3px);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .ct-timer-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
