/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 3px solid #007bff; /* Blue border as in the screenshot */
}

/* Modal Icon */
.modal-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.modal-icon .fa-check-circle {
    color: #B700FF; /* Purple for success */
}

.modal-icon .fa-times-circle {
    color: #dc3545; /* Red for error */
}

/* Modal Title */
.modal-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #B700FF; /* Purple title */
    margin-top: 0;
    margin-bottom: 15px;
}

/* Modal Message */
.modal-message {
    font-size: 1.2rem;
    color: #333;
}

/* Modal Close Button */
.modal-close-btn {
    background: #B700FF;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-close-btn:hover {
    background: #A000E6;
}

/* Modal Countdown */
.modal-countdown {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 15px;
    margin-bottom: 0;
} 