/* Toast Messages */
#toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.toast {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    max-width: 300px;
    font-size: 14px;
    transform: translateX(100%);
}

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

.toast.success {
    background: rgba(46, 204, 113, 0.25);
    border-left: 4px solid #2ecc71;
}

.toast.warning {
    background: rgba(241, 196, 15, 0.25);
    border-left: 4px solid #f1c40f;
}

.toast.error {
    background: rgba(231, 76, 60, 0.25);
    border-left: 4px solid #e74c3c;
}

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

.toast-message {
    flex-grow: 1;
}

.toast-close {
    cursor: pointer;
    padding-left: 10px;
    font-size: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

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