/**
* Theme Name: Electron Child
* Description: This is a child theme of Electron.
* Author: <a href="http://ninetheme.com/about">Ninetheme</a>
* Template: electron
* Version: 1.2.8
*/

.myaccount-sidebar {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.myaccount-sidebar .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  padding: 12px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s;
}

.myaccount-sidebar .nav-link:hover {
  background-color: #f2f2f2;
}

.myaccount-sidebar .nav-item hr {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  margin-left: 35px; /* Indent under icons */
}

.myaccount-sidebar .is-active .nav-link {
  background-color: #0073e6;
  color: #fff;
}

.myaccount-sidebar .is-active .nav-link i {
  color: #fff;
}

/* Full wrapper around My Account section */
.myaccount-wrapper {
  display: flex;
  justify-content: center;
}

/* Inner card layout */
.account-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .account-card {
    flex-direction: row;
  }
}

/* Sidebar styling */
.account-sidebar {
  min-width: 200px;
}

/* Content area styling */
.account-content {
  flex: 1;
  padding-left: 15px;
}

.account-content .woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

span.pdg-left {
    padding-left: 10px;
}

.col-content {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.electron-myaccount-content {
    font-size: 16px;
}

#customer_login {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 900px;
  margin: 40px auto; /* Center horizontally */
}

/* Tablet */
@media (max-width: 992px) {
  #customer_login {
    padding: 30px;
    max-width: 700px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #customer_login {
    padding: 20px;
    max-width: 95%; /* almost full width */
  }
}

