.rc-6b7fda55-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}

.rc-6b7fda55-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
    box-sizing: border-box;
}

.rc-6b7fda55-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 15px 10px;
    border-radius: 8px;
    /* Force equal width while respecting minimum space for content */
    flex: 1 1 0%;
    min-width: max-content;
    box-sizing: border-box;
}

.rc-6b7fda55-number {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: bold;
    line-height: 1;
}

.rc-6b7fda55-label {
    font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    text-transform: uppercase;
    margin-top: 5px;
    word-break: normal;
    white-space: nowrap;
    text-align: center;
}

.rc-shake-anim {
    animation: rc-shake 1.5s infinite ease-in-out;
}

@keyframes rc-shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}