/* Modal backdrop */
.custom-modal-backdrop {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

/* Modal box */
.custom-modal {
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.custom-modal h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.custom-modal p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.custom-modal .modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.custom-modal button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.custom-modal .cancel-btn {
    background: #ddd;
}

.custom-modal .confirm-btn {
    background: #10b981;
    color: #fff;
}

.custom-modal .confirm-btn:hover {
    background: #059669;
}

.custom-modal-backdrop.show {
    display: flex;
}
