/**
 * My Account
 */

.woocommerce-account .woocommerce {
  display: flex;
  gap: 20px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 75%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
  border-top: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 0;
  background: #070707 !important;
}

.woocommerce-account
  .woocommerce-MyAccount-navigation
  ul
  li.is-active
  a:before {
  opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a br {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #47a3ff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
  margin: 0 10px;
  /*opacity: .5;*/
}
/*
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before {
      opacity: 1;
  }*/

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
  content: "»";
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 25px;
  text-align: right;
  font-weight: 600;
}

.woocommerce-account p.order-again {
  text-align: left;
}

.woocommerce-account .woocommerce-EditAccountForm input[type="submit"] {
  margin-top: 50px;
  float: left;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions
  a {
  margin: 0 5px;
}

/* Style the orders table container */
.woocommerce-orders-table {
  border: 1px solid #ddd;
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  font-size: 16px;
  background-color: #f9f9f9;
}

/* Table header styles */
.woocommerce-orders-table th {
  background-color: #f4f4f4;
  color: #333;
  font-weight: bold;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Table body row styles */
.woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.woocommerce-orders-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Table cell styles */
.woocommerce-orders-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

/* Links within the table */
.woocommerce-orders-table td a {
  text-decoration: none;
}

.woocommerce-orders-table td a:hover {
  text-decoration: underline;
}

/* Buttons in the orders table */
.woocommerce-orders-table td .button {
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}

.woocommerce-MyAccount-content .button:hover {
  background-color: #0f62b5;
  color: #fff !important;
}

/* Order data */
.woocommerce-order-details {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
}

/* Style the table itself */
.woocommerce-order-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background-color: #fff;
  margin: 0;
}

/* Style the table header */
.woocommerce-order-details table th {
  background-color: #f4f4f4;
  font-weight: bold;
  padding: 12px;
  text-align: right;
  border-bottom: 1px solid #ddd;
}

/* Style the table rows */
.woocommerce-order-details table tbody tr {
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.woocommerce-order-details table tbody tr:last-child {
  border-bottom: none;
}

/* Style the table cells */
.woocommerce-order-details table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}

/* Style product names */
.woocommerce-order-details table .woocommerce-table__product-name {
  font-weight: bold;
  color: #333;
}

/* Style quantity column */
.woocommerce-order-details table .woocommerce-table__product-quantity {
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Style price or totals */
.woocommerce-order-details table .woocommerce-table__product-total {
  text-align: right;
  font-weight: bold;
  color: #000;
}

/* Style order totals row */
.woocommerce-order-details .woocommerce-table__footer td {
  padding: 15px;
  background-color: #f4f4f4;
  font-weight: bold;
  color: #000;
}

/* Links within the table */
.woocommerce-order-details table td a {
  text-decoration: none;
}

.woocommerce-order-details table td a:hover {
  text-decoration: underline;
}

/* Buttons in the order details table (if applicable) */
.woocommerce-order-details .button {
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 47%;
    overflow: visible;
}

.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: right;
}

.woocommerce form .form-row-last,.woocommerce-page form .form-row-last {
    float: left
}

.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide {
    clear: both
}