/* Green Bat Affiliate Manager - Frontend CSS */

.gbam-button {
    display: inline-block;
    background: #0071E3;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.gbam-button:hover {
    background: #0077ED;
    color: #FFFFFF;
    transform: scale(1.02);
    text-decoration: none;
}

.gbam-button .gbam-price {
    margin-left: 8px;
    opacity: 0.9;
}

.gbam-button-secondary {
    background: transparent;
    color: #0071E3;
    border: 2px solid #0071E3;
}

.gbam-button-secondary:hover {
    background: #0071E3;
    color: #FFFFFF;
}

/* Button group */
.gbam-button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .gbam-button {
        width: 100%;
        text-align: center;
    }
    
    .gbam-button-group {
        flex-direction: column;
    }
}
