/* Individual Plan Shortcodes - Basic Styling */

.gls-price {
    font-size: 24px;
    font-weight: bold;
    color: #54B459;
}

.gls-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gls-btn-primary {
    background: #54B459;
    color: white;
}

.gls-btn-primary:hover {
    background: #4a9d4f;
    color: white;
    transform: translateY(-1px);
}

.gls-btn-secondary {
    background: #6c757d;
    color: white;
}

.gls-btn-current {
    background: #28a745;
    color: white;
    cursor: default;
}

.gls-login-btn {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.gls-login-btn:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}