/* Toast */
.toast-container {
    position: fixed;
    top: 150px;
    right: 40px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 400px;
    max-width: calc(100vw - 32px);
}

.info-icon {
    font-size: 28px;
    color: #2d4373;
    display: flex;
    align-items: center;
}

.toast-notification {
    background: rgba(241, 245, 249, 1);
    border-radius: 8px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    width: 100%;
    animation: slideIn 0.3s ease-out;
    font-family: "Montserrat", sans-serif;
}

.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.toast-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-title {
    font-weight: 500;
    font-size: 16px;
    color: var(--Main-bulma, rgba(0, 0, 0, 1));
}

.toast-body {
    padding-left: 38px;
    font-size: 14px;

    font-weight: 400;
    color: #161616;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    @keyframes slideIn {
        from {
            transform: translateY(-12px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}
