.customer-tabs-nav {
    padding: 0 1rem;
    margin-bottom: -1px;
}

.customer-tabs-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    background-color: #e5e5e5;
    color: #898989;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transition: var(--transition);
    text-decoration: none !important;
}

.customer-tabs-nav li a.active,
.customer-tabs-nav li a:hover {
    background-color: black;
    color: white;
}

.customer-tab-content table {
    width: 100%;
}

.customer-tab-content table thead th {
    font-weight: bold;
    color: black;
    padding: 1rem;
    text-align: left;
    border-bottom: 4px solid #f5f5f5;
}

.customer-tab-content table tbody td {
    padding: 1rem;
    color: black;
}

.customer-tab-content table tbody td,
.customer-tab-content table tbody td > * {
    font-size: 0.75rem !important;
    vertical-align: middle;
}

.customer-tab-content table tbody td a {
    color: black;
}

.customer-tab-content table tbody tr td:first-of-type a {
    text-decoration: underline;
}

.customer-tab-content table tbody tr:not(:last-of-type) td {
    border-bottom: 1px solid var(--border-color);
}

.customer-tab-content .col-sm-12 {
    float: unset !important;
}

.table-overflow {
    overflow: auto;
}

.my-account-status-order {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.table-dropdown {
    display: flex;
    justify-content: flex-end;
}

.table-dropdown button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-dropdown .table-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    z-index: 99999;
    background-color: white;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -2rem, 0);
    transition: var(--transition);
}

.table-dropdown.active .table-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.table-dropdown.active .table-dropdown-menu li a {
    transition: var(--transition);
}

.table-dropdown.active .table-dropdown-menu li a:hover {
    background-color: var(--light-bg-color);
}

.wish-link {
    background-color: var(--light-bg-color);
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    border: 1px dashed var(--text-color);
}

.my-account-links a {
    padding: 0.65rem 1rem;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.my-account-links a.active,
.my-account-links a:hover {
    border: 1px solid var(--border-color);
    border-bottom: 2px solid black;
}

.main-address {
    background-color: #ebf7ed;
    color: #829d7a;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-weight: bold;
}