/* Custom CSS with parent classes */
.account-profile {
    font-family: Arial, sans-serif;
    background-color: #f1f3f6;
}
.account-profile .sidebar  {
    background-color: #fff;
    padding: 10px;
    height: 80vh;
}
.account-profile .sidebar .user-info {
    display: flex;
    align-items: center;
}
.account-profile .sidebar .user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
.account-profile .sidebar .nav-item {
    margin-bottom: 10px;
}
.account-profile .sidebar .nav-link {
    color: #000;
}
.account-profile .sidebar .nav-link.active {
    background-color: #f1f3f6;
    font-weight: bold;
}
.account-profile .sidebar .sub-nav {
    padding-left: 30px;
}
.account-profile .main-content {
    background-color: #fff;
    padding: 20px;
    min-height: 100vh;
}
.account-profile .main-content .section {
    margin-bottom: 30px;
}
.account-profile .main-content .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; */
}
.account-profile .main-content .edit-link {
    color: #2874f0;
    text-decoration: none;
}
.account-profile .main-content .form-control:disabled {
    background-color: #fff;
    border: 1px solid #ced4da;
}

.account-profile .card {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
}
.account-profile .card .address-title {
    font-weight: bold;
    color: #2874f0;
}
.account-profile .card .address-options {
    float: right;
    cursor: pointer;
    color: #6c757d;
}
.account-profile .add-address {
    color: #2874f0;
    text-decoration: none;
}