.countdown-content-container {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
    text-align: center;
}

.countdown-message {
    font-size: 16px;
    color: #3c434a;
    margin-bottom: 15px;
}

.countdown-display {
    font-size: 28px;
    font-weight: bold;
    color: #2271b1;
    margin: 0 5px;
}

.progress-container {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 15px auto;
    max-width: 300px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #2271b1;
    transition: width 0.5s ease;
}

.hidden-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.8s ease;
    margin-top: 0;
}

.hidden-content.show {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
}

.content-box {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: left;
}

.content-box h3 {
    color: #2271b1;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.restart-btn {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
    transition: background-color 0.2s;
}

.restart-btn:hover {
    background-color: #135e96;
}

@media (max-width: 600px) {
    .countdown-content-container {
        padding: 15px;
    }
    
    .countdown-display {
        font-size: 24px;
    }
}
