.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 400px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.toast--show {
    transform: translateX(0);
    opacity: 1;
}

.toast__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.toast__message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.toast--success {
    border-left: 4px solid #28a745;
}

.toast--success .toast__icon {
    background: #28a745;
    color: #fff;
}

.toast--error {
    border-left: 4px solid #dc3545;
}

.toast--error .toast__icon {
    background: #dc3545;
    color: #fff;
}

.toast--warning {
    border-left: 4px solid #ffc107;
}

.toast--warning .toast__icon {
    background: #ffc107;
    color: #333;
}

.toast--info {
    border-left: 4px solid #17a2b8;
}

.toast--info .toast__icon {
    background: #17a2b8;
    color: #fff;
}

@media (max-width: 576px) {
    .toast-container {
        bottom: 80px;
        right: 16px;
        left: 16px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

