.gb-notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    width: calc(100vw - 40px);
}

.gb-notify {
    background: #ffffff;
    border-left: 4px solid var(--agriox-secondary, #567a3d);
    border-radius: 8px;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.35);
    padding: 14px 16px;
    font-family: var(--agriox-font, 'Poppins', sans-serif);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--agriox-primary, #2b282b);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.gb-notify.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.gb-notify--error {
    border-left-color: #dc3545;
}

.gb-notify__icon {
    font-size: 16px;
    margin-top: 1px;
}

.gb-notify--success .gb-notify__icon {
    color: var(--agriox-secondary, #567a3d);
}

.gb-notify--error .gb-notify__icon {
    color: #dc3545;
}

.gb-notify__text {
    flex: 1 1 auto;
}

.gb-notify__close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #9a9a9a;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

@media (max-width: 575px) {
    .gb-notify-container {
        left: 16px;
        right: 16px;
        top: 16px;
        max-width: none;
        width: auto;
    }
}
