/* Simple Toast Notification Styles */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.toast {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.3s ease forwards;
}

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

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

.toast.toast-warning {
    background-color: #ffc107;
    border-left: 4px solid #d39e00;
    color: #333;
}

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

.toast-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.toast-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

.toast-body {
    padding-right: 20px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
