.modal1 {
    position: fixed;
    background: #000;
    color: #fff;
    padding: 20px;
    max-width: 400px;
    border-radius: 8px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-overlay.active {
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal1 label {
    display: block;
    margin-top: 10px;
    cursor: pointer;
}

.modal1 a {
    color: #4da6ff;
    text-decoration: underline;
}

.modal-footer button {
    width: 48%;
    margin-top: 15px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-footer button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.modal-footer #cancelBtn {
    background-color: #6c757d;
}