.custom-account-page .woocommerce-EditAccountForm .button:hover {
    background: #0056b3;
}

/* Center and constrain the WooCommerce account area */
body.logged-in .page-content .woocommerce {
    max-width: 1160px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px 20px;
    display: flex;
    gap: 32px;
}

/* Navigation styles */
body.logged-in .woocommerce-MyAccount-navigation {
    min-width: 220px;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    padding: 20px 0;
    margin-right: 0;
    height: fit-content;
}
body.logged-in .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
body.logged-in .woocommerce-MyAccount-navigation li {
    margin-bottom: 6px;
}
body.logged-in .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

body.logged-in .woocommerce-MyAccount-navigation a .dashicons,
body.logged-in .woocommerce-MyAccount-navigation a svg,
body.logged-in .woocommerce-MyAccount-navigation a i {
    font-size: 1.2em;
    margin-right: 8px;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body.logged-in .woocommerce-MyAccount-navigation .is-active a,
body.logged-in .woocommerce-MyAccount-navigation a:hover,
body.logged-in .woocommerce-MyAccount-navigation a:focus {
    background: #0073aa;
    color: #fff;
}

/* Content area styles */
body.logged-in .woocommerce-MyAccount-content {
    flex: 1 1 0%;
    min-width: 0;
    padding: 0 0 0 16px;
}

body.logged-in .woocommerce-MyAccount-content p {
    line-height: 1.7;
    margin-bottom: 1.2em;
}

/* Modern button styles for WooCommerce My Account page */
body.logged-in .page-content .woocommerce .button,
body.logged-in .page-content .woocommerce .woocommerce-button,
body.logged-in .page-content .woocommerce button,
body.logged-in .page-content .woocommerce input[type="submit"] {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    margin-bottom: 8px;
    margin-right: 8px;
    text-align: center;
    text-decoration: none;
}
body.logged-in .page-content .woocommerce .button:hover,
body.logged-in .page-content .woocommerce .woocommerce-button:hover,
body.logged-in .page-content .woocommerce button:hover,
body.logged-in .page-content .woocommerce input[type="submit"]:hover,
body.logged-in .page-content .woocommerce .button:focus,
body.logged-in .page-content .woocommerce .woocommerce-button:focus,
body.logged-in .page-content .woocommerce button:focus,
body.logged-in .page-content .woocommerce input[type="submit"]:focus {
    background: #005c8a;
    color: #fff;
    outline: none;
    box-shadow: 0 4px 12px rgba(0,115,170,0.15);
}

/* Secondary button style */
body.logged-in .page-content .woocommerce .button.secondary,
body.logged-in .page-content .woocommerce .woocommerce-button.secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
}
body.logged-in .page-content .woocommerce .button.secondary:hover,
body.logged-in .page-content .woocommerce .woocommerce-button.secondary:hover {
    background: #e4e4e4;
    color: #222;
}

/* Destructive button style (e.g., delete account) */
body.logged-in .page-content .woocommerce .button.danger,
body.logged-in .page-content .woocommerce .woocommerce-button.danger {
    background: #dc3232;
    color: #fff;
}
body.logged-in .page-content .woocommerce .button.danger:hover,
body.logged-in .page-content .woocommerce .woocommerce-button.danger:hover {
    background: #a00;
    color: #fff;
}


/* Responsive adjustments */
@media (max-width: 900px) {
    body.logged-in .page-content .woocommerce {
        flex-direction: column;
        padding: 12px 4px;
        gap: 0;
    }
    body.logged-in .woocommerce-MyAccount-navigation {
        min-width: 0;
        margin-bottom: 18px;
        padding: 10px 0;
    }
    body.logged-in .woocommerce-MyAccount-content {
        padding: 0;
    }
}

/* WooCommerce Account Page: Login/Register Modern Styles */
#customer_login.u-columns.col2-set {
    max-width: 1160px;
    margin: 10px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    padding: 10px 10px;
    box-sizing: border-box;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    flex: 1 1 500px;
    min-width: 0;
}


#customer_login input[type="text"],
#customer_login input[type="email"],
#customer_login input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 1rem;
    background: #fafbfc;
    box-sizing: border-box;
}

#customer_login input[type="text"]:focus,
#customer_login input[type="email"]:focus,
#customer_login input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

#customer_login button.button,
#customer_login button.woocommerce-button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 8px;
    transition: background 0.2s;
    cursor: pointer;
}
#customer_login button.button:hover,
#customer_login button.woocommerce-button:hover {
    background: #0056b3;
}

#customer_login h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #222;
    font-weight: 700;
}

#customer_login .woocommerce-LostPassword,
#customer_login .woocommerce-privacy-policy-text {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #666;
}
#customer_login .woocommerce-privacy-policy-link {
    color: #007bff;
    text-decoration: underline;
} 

#customer_login .show-password-input {
    background:#007bff;
}