.simple-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.simple-toast {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.simple-toast i {
    margin-right: 10px;
    font-size: 16px;
}

.simple-toast span {
    flex-grow: 1;
    font-weight: 500;
}

.simple-toast-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.7;
}

.simple-toast-close:hover {
    opacity: 1;
}

.simple-toast-info {
    background-color: #17a2b8;
    color: white;
}

.simple-toast-success {
    background-color: #28a745;
    color: white;
}

.simple-toast-warning {
    background-color: #ffc107;
    color: #212529;
}

.simple-toast-error {
    background-color: #dc3545;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}