.waa-account-container-adbe514b {
    width: 100%;
}
.waa-tabs-nav {
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}
.waa-tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.waa-tab-item {
    margin: 0;
    padding: 0;
}
.waa-tab-link {
    display: inline-block;
    padding: 10px 15px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.waa-tab-link:hover, .waa-tab-link.active {
    color: #1a4d2e;
    border-bottom-color: #1a4d2e;
}
.waa-tab-content-area {
    position: relative;
    min-height: 200px;
}
.waa-tab-content-area.loading .waa-content-inner {
    opacity: 0.5;
    pointer-events: none;
}
.waa-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.waa-loader .spinner {
    animation: rotate 2s linear infinite;
    width: 40px;
    height: 40px;
}
.waa-loader .path {
    stroke: #1a4d2e;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}
/* Hide the default WC navigation */
.waa-account-container-adbe514b .woocommerce-MyAccount-navigation {
    display: none !important;
}
.waa-account-container-adbe514b .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
}