#countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    padding: 10px;
    background-color: #f2f2f2; /* Change this to your desired background color */
    border-radius: 5px;
}

.time {
    font-weight: 900;
	line-height: 20px;
}

.label {
    font-size: 0.75em;

}

.separator {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 8px;
    color: #363636;
}

.countdown-timer-settings-row {
            display: flex;
            align-items: center;
        }
        .countdown-timer-settings-row label {
            margin-right: 10px;
        }
        .countdown-timer-settings-row input[type="number"] {
            margin-right: 20px;
            width: 60px;
        }
