#toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .toast-notification {
        background-color: #fff;
        color: #333;
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 15px;
        min-width: 300px;
        max-width: 350px;
        border-left: 5px solid;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

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

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

    .toast-icon {
        font-size: 1.5rem;
    }

    .toast-message {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Success Toast */
    .toast-success {
        border-color: #28a745;
    }
    .toast-success .toast-icon {
        color: #28a745;
    }

    /* Error Toast */
    .toast-error {
        border-color: #dc3545;
    }
    .toast-error .toast-icon {
        color: #dc3545;
    }
