.toast-container-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast-notification {
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
}

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

.toast-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
}

/* Type label styling */
.toast-type-label {
    font-weight: 650;
    font-size: 14px;
    white-space: nowrap;
}

/* Message styling */
.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.toast-message {
    flex: 1;
    font-size: 14px;
}

    .toast-message strong {
        display: block;
        margin-bottom: 4px;
        font-size: 15px;
    }

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .toast-close:hover {
        color: #000;
    }

/* Success variant */
.toast-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Error variant */
.toast-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Warning variant */
.toast-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Info variant */
.toast-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}
}
