#gp-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.gp-toast {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    padding: 16px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

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

.gp-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gp-toast svg {
    flex-shrink: 0;
}

.gp-toast-success {
    border-left: 4px solid #4CAF50;
}

.gp-toast-success svg {
    color: #4CAF50;
}

.gp-toast-error {
    border-left: 4px solid #f44336;
}

.gp-toast-error svg {
    color: #f44336;
}

.gp-toast-info {
    border-left: 4px solid #2196F3;
}

.gp-toast-info svg {
    color: #2196F3;
}

@media (max-width: 480px) {
    #gp-toast-container {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .gp-toast {
        min-width: unset;
        width: 100%;
        transform: translateY(120%);
    }

    .gp-toast.show {
        transform: translateY(0);
    }
} 