/*
 Theme Name:   Phonezone Child
 Theme URI:    http://example.com/phonezone-child/
 Description:  Phonezone Child Theme
 Author:       Your Name
 Author URI:   http://example.com
 Template:     phonezone
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         responsive, SEO, mobile-friendly
 Text Domain:  phonezone-child
*/

/* Import the parent theme's stylesheet */
@import url("../phonezone/style.css");

/* Add your child theme's custom styles below */






.my-account-tabs {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.nav-tab-wrapper {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.nav-tab {
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ddd;
    margin-right: 5px;
    background-color: #eee;
    color: #333;
    border-radius: 4px 4px 0 0;
}

.nav-tab.active {
    background-color: #fff;
    border-bottom: none;
    color: #0073aa;
}

.tab-content {
    display: none;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px;
    background-color: #fff;
}

.tab-content.active {
    display: block;
}

