/* Sidebar Active State */
.woocommerce-MyAccount-navigation .is-active a {
    background-color: #00A79E !important;
    color: #fff !important;
}

.woocommerce-MyAccount-navigation .is-active i {
    color: #fff !important;
}

.woocommerce-MyAccount-navigation .list-group-item {
    transition: all 0.2s ease;
    border-color: #f1f1f1;
}

.woocommerce-MyAccount-navigation .list-group-item:hover:not(.is-active) a {
    background-color: #f8fdfc;
    color: #00A79E;
}

/* Form Styles inside My Account */
.woocommerce-EditAccountForm fieldset, 
.woocommerce-address-fields fieldset {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content .button {
    background-color: #00A79E;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.woocommerce-MyAccount-content .button:hover {
    background-color: #008f88;
    box-shadow: 0 4px 10px rgba(0, 167, 158, 0.2);
}

/* Dashboard Boxes */
.woocommerce-MyAccount-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}
/* Dashboard Boxes */
/* Dashboard Specific Variables */
:root {
    --primary-teal: #00A79E;
    --soft-teal: rgba(0, 167, 158, 0.1);
}

.text-teal {
    color: var(--primary-teal) !important;
}

.bg-teal-soft {
    background-color: var(--soft-teal);
}

.border-teal {
    border-color: var(--primary-teal) !important;
}

/* Card Hover Effects */
.action-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid #eee !important;
}

.action-card:hover {
    border-color: var(--primary-teal) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 167, 158, 0.1);
}



/* Stats Styling */
.stats-card {
    transition: background 0.3s;
}



/* Typography Fixes */
.welcome-banner h2 {
    letter-spacing: -0.5px;
}

/* Responsive Grid Tweak */
@media (max-width: 768px) {
    .action-card {
        padding: 1.5rem !important;
    }
}