/* Countdown Timer Styles */
.countdown-timer {
    width: 70vw;
    max-width: 300px;
    margin: 20px auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Timeout Popup Styles */
.timeout-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.timeout-popup.active {
    display: flex;
}

.timeout-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeout-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.timeout-content h2 {
    color: #ff3333;
    margin: 0 0 20px 0;
    font-size: 24px;
}

.timeout-content p {
    color: #333;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}