/* .account-container {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    gap: 20px;
    padding-top: 160px;
}

.account-sidebar {
    width: 260px;
}

.user-card {
    background: #fff;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #ffd54f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 40px;
    height: 40px;
}

.input-flex {
    display: flex;
    justify-content: flex-start;
}

.hello {
    font-size: 13px;
    color: #777;
}

.menu {
    background: #fff;
    margin-bottom: 10px;
}

.menu h4 {
    padding: 14px 18px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.menu ul {
    list-style: none;
}

.menu li {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 14px;
}

.menu li:hover {
    background: #f5f7fa;
}

.menu li.selected {
    background: #e8f0fe;
    color: #2874f0;
    font-family: 'roboto-medium';
}

.account-content {
    flex: 1;
}

.account-content .card {
    background: #fff;
    padding: 20px;
    margin-bottom: 18px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.account-tabs li {
    cursor: pointer;
}

.account-tabs li.selected {
    font-weight: 600;
    color: #000;
}

.account-content .card.faq {
    text-align: left;
}

.account-content .card.faq h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'roboto-medium';
}

.account-content .card p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: 'roboto-medium';
}

.account-content .card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.account-content .card-header h2 {
    font-size: 18px;
    font-family: 'roboto-medium';
}

.account-content .card-header a {
    color: #2874f0;
    text-decoration: none;
    font-size: 14px;
}


.account-content .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.account-content input[type="text"] {
    padding: 10px;
    width: 320px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-group label {
    font-size: 14px;
}

.faq {
    text-align: left;
}

.faq h4 {
    margin-top: 15px;
    font-size: 14px;
}

.faq p {
    font-size: 13px;
    color: #555;
    margin-top: 5px;
    line-height: 1.6;
}
.add-address {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    cursor: pointer;
   font-family: 'roboto-medium';
    color: #2874f0;
    display: flex;
    align-items: center;
    gap: 8px;
    width:100%;
    margin:20px 0px;
}

.add-address .plus {
    font-size: 18px;
}

.address-form {
    display: none;
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    max-width: 800px;
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.row.full {
    flex-direction: column;
}

input,
select,
textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 2px;
    outline: none;
}

textarea {
    height: 80px;
    resize: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #2874f0;
}

.address-type {
    margin: 15px 0;
}

.address-type label {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.form-buttons {
    margin-top: 20px;
}

.save-btn {
    background: #2874f0;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-weight: 600;
}

.cancel-btn {
    background: none;
    border: none;
    color: #2874f0;
    margin-left: 20px;
    font-weight: 600;
    cursor: pointer;
}

.address-card {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tag {
  background: #f0f0f0;
  color: #666;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  display: inline-block;
}

.address-content h4 {
  margin: 5px 0;
  font-size: 15px;
}

.address-content h4 span {
  font-weight: normal;
  margin-left: 15px;
}

.address-content p {
  margin: 5px 0 0;
  font-size: 14px;
}

.menu-wrapper {
  position: relative;
}

.menu-btn {
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.dropdown {
  position: absolute;
  right: 0;
  top: 30px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  display: none;
  flex-direction: column;
  min-width: 100px;
  z-index: 10;
}

.dropdown button {
  background: none;
  border: none;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.dropdown button:hover {
  background: #f5f5f5;
}

.dropdown .edit {
  color: #2874f0;
}

.dropdown .delete {
  color: #000;
}

.show {
  display: flex;
}
.account-sidebar {
  width: 260px;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.sidebar-section {
  border-bottom: 1px solid #f0f0f0;
  padding: 15px;

}
.sidebar-section a{
  text-decoration: none;
}

.account-sidebar .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px!important;
  color: #878787;
  margin-bottom: 10px;
}

.account-sidebar .section-title .icon {
  font-size: 18px;
  color:var(--color-primary-600);
}

.account-tabs,
.sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-tabs li,
.sub-list li {
  padding: 10px 10px 10px 28px;
  font-size: 14px;
  cursor: pointer;
  color: #212121;
  transition: 0.2s;
}

.account-tabs li:hover,
.sub-list li:hover {
  background: #f5f5f5;
}

.account-tabs li.selected {
  background: #f1f3f6;
  color: #2874f0;
  font-weight: 500;
}

.amount {
  float: right;
  color: green;
  font-weight: 500;
}

.logout {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px!important;
  color: #878787;
  font-weight: 500;
}

.logout .icon {
  color: var(--color-primary-600);
} */