.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

.notification {
    background: var(--surface-dark);
    border-left: 4px solid;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.3s ease-out forwards;
}

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

.notification__content {
    display: flex;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.notification__icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
}

.notification__text {
    flex: 1;
}

.notification__title {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.notification__message {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notification__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

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

.notification--success {
    border-color: #10B981;
    background: #1a4535;
}

.notification--error {
    border-color: #EF4444;
    background: #3a1c1d;
}

.notification--warning {
    border-color: #F59E0B;
    background: #3a2e1a;
}

.notification--info {
    border-color: #3B82F6;
    background: #1a2a3a;
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.notification.slide-out {
    animation: slideOut 0.3s ease-in forwards;
}
