/* Styles for the standalone page */
.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    background: #fff;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    flex: 1;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #bf7026;
    background-color: rgba(0, 123, 255, 0.05);
}

.tab-button.active {
    border-bottom: 2px solid #1BA4AB;
    color: #1BA4AB;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Standalone page styles */
.tabbed-forms-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.tab-pane .gform_wrapper,
.tab-pane .woocommerce {
    margin: 0;
}

.tab-pane input:not([type="checkbox"]),
.tab-pane select,
.tab-pane textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* WooCommerce specific styles */
.woocommerce form .form-row .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce form .form-row .woocommerce-form__input-checkbox {
    margin: 0;
}

/* Hide WooCommerce navigation */
.tab-pane .woocommerce-MyAccount-navigation {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tabbed-forms-container {
        margin: 0;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .tab-button {
        padding: 15px;
        font-size: 16px;
    }
}