/* Custom Modal - Best Friend Theme */
.angela-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.angela-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.angela-modal {
    background: var(--bg-surface);
    width: 90%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border);
}

.angela-modal-overlay.active .angela-modal {
    transform: scale(1);
}

.angela-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.angela-modal-message {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.angela-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.angela-modal-btn {
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.angela-modal-btn.cancel {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.angela-modal-btn.cancel:hover {
    background: var(--border);
}

.angela-modal-btn.confirm {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.angela-modal-btn.confirm:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.angela-modal-btn.confirm.danger {
    background: #ef4444;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.angela-modal-btn.confirm.danger:hover {
    background: #dc2626;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
}