/* Webshop Helpers - My Account - Frontend Styles */

/* My Account Navigation */
button.myaccount_menu_title {
    display: none !important;
    @media screen and (max-width: 768px) {
        display: block !important;
    }
}
button.myaccount_menu_title .caret::before {
    content: " ▼";
    color: white;
    margin-left: 1rem;
}

.woocommerce-MyAccount-navigation {
    /* Custom menu styles */
    @media screen and (max-width: 768px) {
        display: none;
    }
}

.woocommerce-MyAccount-navigation ul li {
    /* Custom menu item styles */
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    /* Active menu item styles */
}

/* My Account Content */
.woocommerce-MyAccount-content {
    /* Add your custom content area styles here */
}

/* Dashboard */
.woocommerce-MyAccount-content .woocommerce-info {
    /* Custom info box styles */
}

/* Orders Table */
.woocommerce-orders-table {
    /* Custom orders table styles */
}

.woocommerce-orders-table thead th {
    /* Table header styles */
}

.woocommerce-orders-table tbody tr {
    /* Table row styles */
}

/* Custom Company Information Section */
.woocommerce-MyAccount-company {
    margin-bottom: 2em;
    padding: 1em;
    background: #f5f5f5;
    border-radius: 4px;
}

.woocommerce-MyAccount-company h3 {
    margin-top: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        width: 100%;
    }
}
