﻿.toast-container {
    position: fixed;
    top: 20px;
    right: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.toast-notification {
    display: flex;
    max-width:350px;
    align-items: center;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    color: white;
}

    .toast-notification i {
        margin-right: 8px;
    }

    .toast-notification p {
        margin: 0;
        display: inline; /* Add this property */
    }
