/* Toast Notifications */
.notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toast.hiding {
    opacity: 0;
    transform: translateX(100%);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
    opacity: 0.6;
}

.toast-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Toast Types */
.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.success .toast-icon {
    color: var(--color-success);
}

.toast.error {
    border-left: 4px solid var(--color-error);
}

.toast.error .toast-icon {
    color: var(--color-error);
}

.toast.warning {
    border-left: 4px solid var(--color-warning);
}

.toast.warning .toast-icon {
    color: var(--color-warning);
}

.toast.info {
    border-left: 4px solid var(--color-info);
}

.toast.info .toast-icon {
    color: var(--color-info);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Confirmation Modal Specifics */
.confirmation-modal .modal-content {
    max-width: 600px;
    text-align: center;
}

.confirmation-modal .modal-header {
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
}

.confirmation-modal .modal-body {
    padding-top: 8px;
    padding-bottom: 24px;
}

.confirmation-modal .modal-footer {
    justify-content: center;
    border-top: none;
    padding-top: 0;
    padding-bottom: 24px;
}

.confirmation-modal .modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.confirmation-modal.danger .modal-icon {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--color-error);
}

.confirmation-modal.warning .modal-icon {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--color-warning);
}

.confirmation-modal.info .modal-icon {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--color-info);
}