/* Global Delete Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.hidden {
    display: none;
}

/* Default delete modal styling */
.delete-modal {
    background: rgba(20,25,40,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 40px 20px;
    width: 500px;
    max-width: 100vw;
    color: #fff;
}

.delete-modal h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.delete-modal p,
.delete-modal #globalDeleteConfirmationMessage {
    font-size: 14px;
    color: #d1d5db;
}

.delete-modal #globalDeleteConfirmationMessage {
    margin-bottom: 16px;
}

.delete-modal .actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.delete-modal .btn-danger {
    background: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.delete-modal .btn-secondary {
    background: #6b7280;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.delete-modal .btn-danger:hover {
    background: #b91c1c;
}

.delete-modal .btn-secondary:hover {
    background: #4b5563;
}
