.timezone-display {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.countdown-widget {
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    max-width: 400px;
}

.countdown-display {
    margin-top: 15px;
}

.time-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.time-values div {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 60px;
}

.time-values span {
    display: block;
    font-size: 1.4em;
    font-weight: bold;
    color: #ffffff;
}

.progress-container {
    margin-top: 20px;
    width: 100%;
    min-height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    width: 0;
    transition: width 0.5s ease-in-out;
}

.progress-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    background: conic-gradient(
        rgba(255,255,255,0.9) 0deg,
        rgba(255,255,255,0.1) 0deg
    );
    transition: background 0.5s ease-in-out;
}
.days-only {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 1.4em;
    font-weight: bold;
    color: #ffffff;
}
