.ghm-toast-template {
    position: fixed;
    top: auto;
    left: 50%;
    right: auto;
    bottom: 30px;
    width: auto;
    height: auto;
    background-color: white;
    z-index: 999999;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 40px;
    border: 2px solid #2945b8;
    min-width: 240px;
}

.ghm-toast-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.ghm-toast-spinner {
    display: inline-block;
    height: 24px;
    width: 24px;
    border: 2px solid #d7d7d7;
    border-left-color: #2945b8;
    border-radius: 100%;
    animation: donut-spin 1.2s linear infinite;
}