.woocommerce-MyAccount-navigation {
display:none;
}
.woocommerce-account .woocommerce-MyAccount-content {

    width: 100%;
}
/* Change background color of buttons */
.button {
    background-color:#1A1B63 !important;
    /* Additional styles */
}

/* Change background color of navigation */
.navbar {
    background-color:#1A1B63 !important;
    /* Additiona#1A1B63l styles */
}
.pagination a,
.page-numbers a,
.nav-links a {
    color: #ffffff !important; /* Change to your desired text color */
    background-color:#1A1B63  !important; /* Change to your desired background color */
    padding: 5px 10px !important; /* Adjust padding as needed */
    border-radius: 10px !important; /* Adjust border radius as needed */
}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  height: 3.2em !important;
  line-height: 1.6em !important;
  white-space: normal !important;

		
	
}
/* Style pagination links */
.page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 4px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.page-numbers:hover {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
/* Show more lines of product description before Read More */
.woocommerce-Tabs-panel--description {
    display: -webkit-box;
    -webkit-line-clamp: 25; /* Show 8 lines instead of 5 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    max-height: 50em; /* Adjust this value for more text */
    transition: max-height 0.3s ease-in-out;
}

/* Expand full content when "Read More" is clicked */
.woocommerce-Tabs-panel--description.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}
