/* styles.css */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 180;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #d9534f;
    color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast .close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.toast.hide {
    opacity: 0;
    transform: translateX(-100%);
}
