﻿.ga-alert {
    position: fixed;
    bottom: -100px;
    right: 1rem;
    width: 100%;
    max-width: 24rem;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.610, 0.355, 1), bottom 0.3s ease-in-out;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1rem;
    overflow: hidden;
}

.ga-alert-show {
    opacity: 1;
    transform: translateX(0);
}

.ga-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent;
}

.ga-progress-bar {
    height: 100%;
    transition: none;
    opacity: 1;
}

.ga-close-alert {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
}

    .ga-close-alert:hover {
        opacity: 1;
    }

.ga-alert-info {
    background-color: #3b82f6;
    color: white;
}

.ga-alert-success {
    background-color: #22c55e;
    color: white;
}

.ga-alert-warning {
    background-color: #f59e0b;
    color: #1e293b;
}

.ga-alert-danger {
    background-color: #ef4444;
    color: white;
}

.ga-bg-info {
    background-color: #60a5fa;
}

.ga-bg-success {
    background-color: #4ade80;
}

.ga-bg-warning {
    background-color: #fbbf24;
}

.ga-bg-danger {
    background-color: #f87171;
}

.ga-font-info {
    color: white;
}

.ga-font-success {
    color: white;
}

.ga-font-warning {
    color: #1e293b;
}

.ga-font-danger {
    color: white;
}
