body { font-family: Poppins, sans-serif; }

.pwcui-account-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 0 20px;
}

/* SIDEBAR */
.pwcui-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pwcui-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.pwcui-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pwcui-sidebar li {
    margin-bottom: 10px;
}

.pwcui-sidebar a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.pwcui-sidebar .is-active > a,
.pwcui-sidebar a:hover {
    background: #6CCF5F;
    color: #fff;
}

/* CONTENT AREA */
.pwcui-content {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* TABLE STYLING */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.woocommerce table.shop_table th {
    background: #f3f3f3;
    padding: 12px;
    border-radius: 8px;
}

.woocommerce table.shop_table td {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
}

/* ADDRESS BLOCK */
.woocommerce-Address {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
}

.woocommerce-Address h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.woocommerce-EditAccountForm input {
    padding: 12px;
    border-radius: 8px;
}

/* BUTTONS */
.pwcui-content .button {
    background: #6CCF5F !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    font-weight: 500 !important;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .pwcui-account-wrapper {
        grid-template-columns: 1fr;
    }

    .pwcui-sidebar {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pwcui-sidebar ul {
        display: flex;
        gap: 10px;
    }

    .pwcui-sidebar a {
        width: max-content;
    }
}
