.gp-toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2147483646;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.gp-toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(24, 28, 12, 0.96);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

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

.gp-toast-hide {
    opacity: 0;
    transform: translateX(24px);
}

.gp-toast-icon {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gp-toast-text {
    flex: 1;
    font: 500 14px/1.45 Roboto, sans-serif;
    word-break: break-word;
}

.gp-toast-close {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.gp-toast-close:hover {
    color: #fff;
}

.gp-toast-info .gp-toast-icon {
    background: rgb(154, 163, 117);
}

.gp-toast-success .gp-toast-icon {
    background: rgb(90, 135, 8);
}

.gp-toast-error .gp-toast-icon {
    background: rgb(203, 43, 49);
}

.gp-toast-warning .gp-toast-icon {
    background: rgb(248, 216, 127);
}

.gp-toast-info {
    border-color: rgba(154, 163, 117, 0.35);
}

.gp-toast-success {
    border-color: rgba(90, 135, 8, 0.45);
}

.gp-toast-error {
    border-color: rgba(203, 43, 49, 0.45);
}

.gp-toast-warning {
    border-color: rgba(248, 216, 127, 0.45);
}

@media (max-width: 480px) {
    .gp-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        align-items: stretch;
    }
}
