.text-center{
    text-align: center !important;
}
.user-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.content-section{
    display: flex;
}
.user-page-title {
    color: #521035;
    margin-bottom: 20px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px;
}
/* .user-sidebar {
    width: 200px;
    padding-right: 10px;
    border-right: 1px solid #e0e0e0;
}
.user-sidebar ul li::marker {
    color: black;
}
.user-sidebar ul li {
    padding: 10px 0;
    color: #521035;
    cursor: pointer;
    transition: all 0.3s ease;
}
.user-sidebar ul li:hover {
    margin: 5px 0;;
    color: white;
    background: #521035;
    border-radius: 0 20px 20px 0;
    padding: 5px 10px 5px 10px;
}
.user-sidebar ul li.active {
    list-style-type: none;
    color: white;
    background: #521035;
    border-radius: 0 20px 20px 0;
    padding: 5px 0 5px 10px;
} */

.woocommerce-MyAccount-navigation {
    width: 200px;
    padding-right: 10px;
    border-right: 1px solid #e0e0e0;
}

.woocommerce-MyAccount-navigation ul li::marker {
    color: black;
}

.woocommerce-MyAccount-navigation ul li {
    padding: 10px 0;
    color: #521035;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style-type: none;
    text-decoration: none;
}

.woocommerce-MyAccount-navigation ul li:hover {
    margin: 5px 0;
    color: white;
    background: #521035;
    border-radius: 0 20px 20px 0;
    padding: 5px 10px 5px 10px;
}

.woocommerce-MyAccount-navigation ul li.is-active {
    list-style-type: none;
    color: white;
    background: #521035;
    border-radius: 0 20px 20px 0;
    padding: 5px 0 5px 10px;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: white !important;
}

.woocommerce-MyAccount-navigation ul li:hover a {
    color: white !important;
    text-decoration: none !important;
}

.bucket-list {
    width: -webkit-fill-available;
    margin-left: 20px;
}
.bucket-section {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 4px;
}
.bucket-header {
    background-color: #521035;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
}
.bucket-table {
    width: 100%;
    border-collapse: collapse;
}
.bucket-table th, .bucket-table td {
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.bucket-table th {
    color: #521035;
    background-color: #f2f2f2;
}
.product-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-image {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}
.product-info {
    display: flex;
    flex-direction: column;
}
.product-name {
    color: #521035;
}
.product-price {
    color: #521035;
    font-weight: bold;
}
.currency-icon{
    font-size: 11px;
}
.product-size
{
    color: #521035;
    font-size: 0.8em;
}
.product-count {
    color: #000;
    font-size: 0.8em;
}
.stock-status {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.stock-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}
.in-stock { background-color: blue; }
.low-stock { background-color: yellow; }
.out-of-stock { background-color: red; }
.action-column {
    display: flex;
    align-items: center;
    gap: 5px;
}
.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #521035;
}
.add-button{
    border: 1px solid #521035;
border-radius: 5px;
}
.add-button img{
    margin-top: -2px;
}
.red{
    color: red !important;
}
.action-btn img {
width: 15px;
height: 15px;
}
.product-quantity {
    width: fit-content;
display: flex
;
align-items: center;
gap: 10px;
margin-top: 5px;
padding: 0 5px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.quantity-btn {
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}
.quantity-value {
    font-weight: bold;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 20% !important;
    margin-top: 30px !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 78% !important;
}

.login-message{
    background: #f2eaf1;
    padding: 16px;
}

.login-message a{
    color: #521035;
    font-weight: bold;
}

.best-selling-products{
    padding: 0px 64px !important;
}

@media only screen and (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content{
        float: none;
        width: 100% !important;
        border-right: 0px !important;
    }
    .bucket-section{
        overflow: auto;
    }
    table.bucket-table, .bucket-header{
        min-width: 700px;
    }
    .action-column{
        flex-direction: row-reverse;
    }
}