body {
    font-family: Arial, sans-serif;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 10000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    text-align: center;
    z-index: 10001;
}

.modal p {
    font-size: 16px;
    color: #333;
}

.modal button {
    padding: 12px 20px;
    margin: 10px;
    font-weight: bold;
    font-size: 16px;
    background: #6200ea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal button:hover {
    background: #3700b3;
}

.modal button.cancel-btn {
    background: #e0e0e0;
}

.modal button.cancel-btn:hover {
    background: #d6d6d6;
}