.countdown-timer{
    display: flex;
    gap:20px;
}
.time-container {
    display: inline-block;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 10px;
}

.time-element {
    display: inline-block;
    width: 60px; /* Fixed width to prevent shifting */
    text-align: center;
    line-height: normal;
}

.label {
    display: block;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000000;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.number {
    font-family: 'Poppins';
    color: #000000;
    font-size: 28px;
    letter-spacing: 0;
    font-weight: 900;
}

@media(max-width:767px){
    .countdown-timer{
        gap: 5px;
    }

    .label {
        display: block;
        font-family: 'Poppins';
        font-weight: 400;
        color: #000000;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 0;
    }
    
    .number {
        font-family: 'Poppins';
        color: #000000;
        font-size: 18px;
        letter-spacing: 0;
        font-weight: 900;
    }

    .time-element {
        display: inline-block;
        width: 40px; /* Fixed width to prevent shifting */
        text-align: center;
        line-height: normal;
    }

    .time-container {
        display: inline-block;
        text-align: center;
        padding: 5px;
        border: 1px solid rgb(0 0 0 / 10%);
        border-radius: 10px;
    }
}

@media(max-width:320px){
    .time-element {
        display: inline-block;
        width: 30px; /* Fixed width to prevent shifting */
        text-align: center;
        line-height: normal;
    }

    .number {
        font-family: 'Poppins';
        color: #000000;
        font-size: 14px;
        letter-spacing: 0;
        font-weight: 900;
    }
}