*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(145deg, #432371, #f5a36c);
    color: #fff;
}

h1{
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
}

.countdown{ 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.timer {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    margin: 0 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100px;
    max-width: 160px;
    height: 100%;
    transition: background-color 0.2s ease-in-out;
}

.timer .time{
    font-size: 40px;
    font-weight: 700;
}

.timer .label{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px #fff;
}

.timer:hover{
    background-color: rgba(255, 255, 255, 0.25);
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#targetDateInput, #startButton, #timezone-select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    background-color: rgba(4, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
}

#targetDateInput {
    color-scheme: dark;
}

#progressBar {
    width: 60%;
    height: 10px;
    margin-top: 30px;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.15);
}

#progressBar::-webkit-progress-bar {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

#progressBar::-webkit-progress-value {
    background: #fff;
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

@media screen and (max-width:1024px){
    h1{
        font-size: 38px;
    }
    .countdown{
        flex-wrap: wrap;
    }
    .timer{
        max-height: 150px;
        margin: 20px;
    }
}

/* Add to your existing style.css file */

#event-select {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
}

#event-select option {
    background-color: #432371;
    color: #fff;
}

#event-select option:hover {
    background-color: #f5a36c;
    color: #432371;
}

#resetButton {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
}

#eventDescriptionInput {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
}

#testConfettiButton {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
}

#testConfettiButton {
    /* ... existing styles ... */
    margin-left: 10px;
}