/* ===================================
   Balance Notifications
   =================================== */

.notifications-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    background: var(--card-bg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.notification:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Types */
.notification-info {
    border-left-color: var(--color-info, #3b82f6);
    background: var(--color-info-bg, rgba(59, 130, 246, 0.05));
}

.notification-warning {
    border-left-color: var(--color-warning, #f59e0b);
    background: var(--color-warning-bg, rgba(245, 158, 11, 0.05));
}

.notification-danger {
    border-left-color: var(--color-danger, #ef4444);
    background: var(--color-danger-bg, rgba(239, 68, 68, 0.05));
}

/* Icon */
.notification-icon {
    font-size: var(--font-size-2xl);
    flex-shrink: 0;
    line-height: 1;
}

/* Content */
.notification-content {
    flex: 1;
}

.notification-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.notification-message {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Close Button */
.notification-close {
    background: transparent;
    border: none;
    color: var(--color-text-tertiary);
    font-size: var(--font-size-2xl);
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--color-text-primary);
}

