/* WooCommerce My Account Styles - Bengali Theme */

.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: none;
    margin: 0;
    padding: 20px 0;
}

/* Navigation Sidebar - Left side */
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #f8f9fa;
    color: #333;
    border-left-color: #ccc;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    border-left-color: #333;
}

/* Main Content Area - Right side */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

/* Page title styling */
.woocommerce-MyAccount-content > h2:first-child,
.woocommerce-MyAccount-content > h1:first-child {
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007cba;
    color: #333;
    font-weight: 600;
    font-size: 2.4rem;
}

/* Dashboard Styles */
.account-dashboard {
    max-width: none;
}

.dashboard-welcome {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid #e5e5e5;
}

.dashboard-welcome h2 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 3.2rem;
    font-weight: 600;
}

.dashboard-welcome p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 2.2rem;
}

/* Quick Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.stat-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.stat-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.24rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.36rem;
    color: #666;
}

/* Dashboard Sections */
.dashboard-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.dashboard-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dashboard-section h3 {
    font-size: 1.92rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

/* Form Styling */
.woocommerce form .form-row {
    margin-bottom: 1.5em;
}

.woocommerce form .form-row label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 22.4px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: #999;
    box-shadow: 0 0 0 1px #999;
}

.woocommerce form .form-row .description {
    font-size: 1.36em;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Password fieldset */
.woocommerce form fieldset {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
}

.woocommerce form fieldset legend {
    font-weight: 600;
    color: #333;
    padding: 0 10px;
    font-size: 1.76em;
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background: #fff;
    table-layout: auto;
}

/* Orders table container */
.woocommerce-MyAccount-content .woocommerce-orders-table__wrapper,
.woocommerce-MyAccount-content .shop_table_wrapper {
    width: 100%;
    overflow-x: auto;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

.woocommerce-orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
    font-size: 22.4px;
}

.woocommerce-orders-table td {
    font-size: 22.4px;
    line-height: 1.5;
}

.woocommerce-orders-table tr:hover {
    background: #f9f9f9;
}

.woocommerce-orders-table a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-orders-table a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Buttons */
.woocommerce-Button,
.button,
button[name="save_account_details"] {
    background: #007cba !important;
    color: white !important;
    border: 1px solid #007cba !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 22.4px;
    box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
}

.woocommerce-Button:hover,
.button:hover,
button[name="save_account_details"]:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

.button.view {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    font-size: 20.8px;
    padding: 8px 16px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.button.view:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Account Details Summary */
.account-details-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
}

.detail-item {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e1e1e1;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item strong {
    color: #333;
    margin-right: 10px;
}

/* Dashboard Links */
.dashboard-link {
    margin-top: 20px;
}

/* WooCommerce Messages */
.woocommerce-Message {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #ddd;
}

.woocommerce-Message--info {
    background: #f0f8ff;
    border-left-color: #0073aa;
    color: #0073aa;
}

/* Account Welcome Message */
.woocommerce-MyAccount-content > p:first-child {
    background: #e3f2fd;
    padding: 18px 25px;
    border-radius: 4px;
    border: 1px solid #90caf9;
    color: #1565c0;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 24px;
}

/* Dashboard greeting message */
.dashboard-greeting {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 20px 25px !important;
    border-radius: 6px !important;
    border: 1px solid #bae6fd !important;
    color: #0c4a6e !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
    font-size: 25.6px !important;
    text-align: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.dashboard-greeting strong {
    color: #1e40af !important;
    font-weight: 600 !important;
}

.woocommerce-MyAccount-content > p:first-child a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-MyAccount-content > p:first-child a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Required field asterisk */
.required {
    color: #d63638;
}

/* Additional button overrides for WooCommerce */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt {
    background: #007cba !important;
    color: white !important;
    border: 1px solid #007cba !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

/* View button specific styling */
.woocommerce .button.view,
.woocommerce a.button.view {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    font-size: 20.8px !important;
    padding: 8px 16px !important;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.woocommerce .button.view:hover,
.woocommerce a.button.view:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Order Details Styling */
.woocommerce-order-details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-order-details h2 {
    color: #333;
    font-size: 2.24rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
}

/* Order Overview */
.woocommerce-order-overview {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.woocommerce-order-overview li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 22.4px;
    font-weight: 500;
    color: #555;
}

.woocommerce-order-overview strong {
    color: #333;
    font-weight: 600;
    margin-right: 5px;
}

/* Order Details Table */
.woocommerce-table.order_details {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.woocommerce-table.order_details th {
    background: #f8f9fa;
    color: #333;
    padding: 15px 12px;
    font-weight: 600;
    text-align: left;
    font-size: 22.4px;
    border-bottom: 2px solid #ddd;
}

.woocommerce-table.order_details td {
    padding: 15px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    font-size: 22.4px;
    line-height: 1.5;
}

.woocommerce-table.order_details tr:last-child td {
    border-bottom: none;
}

.woocommerce-table.order_details tr:hover {
    background: #f8f9fa;
}

/* Product links in order details */
.woocommerce-table.order_details a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-table.order_details a:hover {
    color: #000;
    text-decoration: underline;
}

/* Order totals styling */
.woocommerce-table tfoot th,
.woocommerce-table tfoot td {
    background: #f8f9fa;
    font-weight: 600;
    border-top: 2px solid #ddd;
    padding: 12px;
}

.woocommerce-table tfoot .order-total th,
.woocommerce-table tfoot .order-total td {
    background: #333;
    color: white;
    font-size: 25.6px;
    font-weight: 700;
}

/* Customer Details Section */
.woocommerce-customer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.woocommerce-column {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.woocommerce-column h2 {
    color: #333;
    font-size: 1.92rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.woocommerce-column address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.woocommerce-column address strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Order Status Badges */
.order-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 19.2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.order-status.completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.order-status.on-hold {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.order-status.pending {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* Order Notes */
.woocommerce-order-details .order_comments {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Payment Method Styling */
.payment-method-info {
    background: #f8f9fa;
    border-left: 4px solid #333;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}

.payment-method-info strong {
    color: #333;
    font-weight: 600;
}

/* Addresses Page Styling */
.woocommerce-Addresses {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
}

.woocommerce-Addresses h3 {
    color: #333;
    font-size: 1.92rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.woocommerce-Addresses .u-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.woocommerce-Address {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    position: relative;
}

.woocommerce-Address .title h3 {
    background: transparent;
    color: #333;
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.76rem;
    border-bottom: 1px solid #ddd;
}

.woocommerce-Address address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    min-height: 60px;
    font-size: 22.4px;
}

.woocommerce-Address .edit {
    background: #007cba !important;
    color: white !important;
    border: 1px solid #007cba !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20.8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.woocommerce-Address .edit:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
    color: white !important;
    transform: translateY(-1px);
}

/* Top information message styling */
.woocommerce-MyAccount-content > p:not(.dashboard-greeting) {
    background: #e3f2fd !important;
    padding: 15px 20px !important;
    border-radius: 4px !important;
    border: 1px solid #90caf9 !important;
    color: #1565c0 !important;
    margin-bottom: 25px !important;
    line-height: 1.5 !important;
    font-size: 22.4px !important;
}

/* Address Edit Forms */
.woocommerce-address-fields {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-address-fields h3 {
    color: #333;
    font-size: 2.08rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
}

/* Address form styling */
.woocommerce-address-fields .form-row {
    margin-bottom: 1.5em;
}

.woocommerce-address-fields .form-row label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.woocommerce-address-fields .form-row input,
.woocommerce-address-fields .form-row select,
.woocommerce-address-fields .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 22.4px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.woocommerce-address-fields .form-row input:focus,
.woocommerce-address-fields .form-row select:focus,
.woocommerce-address-fields .form-row textarea:focus {
    outline: none;
    border-color: #999;
    box-shadow: 0 0 0 1px #999;
}

/* Address introduction text */
.woocommerce-MyAccount-content > p {
    background: #e3f2fd;
    padding: 18px 25px;
    border-radius: 4px;
    border: 1px solid #90caf9;
    color: #1565c0;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 24px;
}

/* Login Form Styling */
.woocommerce .u-columns.col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto;
    padding: 20px 0;
}

.woocommerce .u-column1,
.woocommerce .u-column2 {
    width: 450px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce .u-column1 h2,
.woocommerce .u-column2 h2 {
    color: #333;
    font-size: 2.24rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    text-align: center;
}

/* Login form fields */
.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row {
    margin-bottom: 20px;
}

.woocommerce-form-login label,
.woocommerce-form-register label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 22.4px;
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="email"],
.woocommerce-form-register input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 22.4px;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

/* Login buttons */
.woocommerce-form-login .woocommerce-Button,
.woocommerce-form-register .woocommerce-Button {
    width: 100%;
    background: #007cba !important;
    color: white !important;
    border: 1px solid #007cba !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 25.6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.woocommerce-form-login .woocommerce-Button:hover,
.woocommerce-form-register .woocommerce-Button:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
    color: white !important;
    transform: translateY(-1px);
}

/* Remember me checkbox */
.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px !important;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
}

/* Lost password link */
.woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-LostPassword a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce-LostPassword a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Registration info text */
.woocommerce-form-register p:not(.form-row) {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #b3d9ff;
    color: #0066cc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Required asterisk */
.woocommerce-form-login .required,
.woocommerce-form-register .required {
    color: #d63638;
    font-weight: 700;
}

/* Responsive design for login form */
@media (max-width: 768px) {
    .woocommerce .u-columns.col2-set {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }
    
    .woocommerce .u-column1,
    .woocommerce .u-column2 {
        padding: 20px;
    }
}

/* Lost Password Form Styling */
.woocommerce-ResetPassword {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.woocommerce-ResetPassword p:first-child {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #b3d9ff;
    color: #0066cc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.woocommerce-ResetPassword .form-row {
    margin-bottom: 20px;
}

.woocommerce-ResetPassword label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.woocommerce-ResetPassword input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.woocommerce-ResetPassword input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.woocommerce-ResetPassword .woocommerce-Button {
    width: 100%;
    background: #007cba !important;
    color: white !important;
    border: 1px solid #007cba !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ResetPassword .woocommerce-Button:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
    color: white !important;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 20px;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: none;
        order: 1;
    }
    
    .woocommerce-MyAccount-content {
        order: 2;
        padding: 20px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woocommerce-orders-table {
        font-size: 0.875rem;
    }
    
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-orders-table {
        font-size: 0.75rem;
    }
    
    /* Stack table cells on mobile */
    .woocommerce-orders-table,
    .woocommerce-orders-table thead,
    .woocommerce-orders-table tbody,
    .woocommerce-orders-table th,
    .woocommerce-orders-table td,
    .woocommerce-orders-table tr {
        display: block;
    }
    
    .woocommerce-orders-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .woocommerce-orders-table tr {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 4px;
    }
    
    .woocommerce-orders-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    
    .woocommerce-orders-table td:before {
        content: attr(data-title) ": ";
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
    }
}

/* Reset Password Form - Same styling as Lost Password */
.woocommerce-ResetPassword input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: inherit;
    margin-bottom: 15px;
}

.woocommerce-ResetPassword .form-row-first,
.woocommerce-ResetPassword .form-row-last {
    margin-bottom: 20px;
}

/* Back to login link styling */
.woocommerce-MyAccount-content .woocommerce-Button--secondary {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    margin-right: 10px;
}

.woocommerce-MyAccount-content .woocommerce-Button--secondary:hover {
    background: #e9ecef !important;
    color: #333 !important;
}