/* General Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #333;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #555;
    width: 90%;
    max-width: 450px;
    position: relative;
    color: #fff;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h4 {
    margin-bottom: 25px;
}

.modal-content .form-label {
    color: #fff;
}

.modal-content .form-control {
    background-color: #fff;
    color: #333;
}

.modal-content .info-text {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 15px;
    margin-bottom: 25px;
}

.modal-content .btn-reset {
    background-color: #FF8A00; /* Orange */
    color: #fff;
    border: none;
}

.modal-content .btn-cancel-modal {
    background-color: #D32F2F; /* Red */
    color: #fff;
    border: none;
}
