a.edit-user {
    border: 1px solid #cdcdcd;
    border-radius: 20px;
    color: #444;
    font-family: Mulish;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 15px!important;
    text-decoration: none;
}
a.edit-user:hover {
  border-color: #018349;
  color: #018349!important;
}

.layout-body {
    display: flex;
    min-height: calc(100vh - 120px);
}

/* SIDEBAR */

.user-sidebar {
    width: 260px;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    flex-shrink: 0;
    padding: 0;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    position: fixed;
}

.layout-page {
    margin-left: 260px;
}

.side-nav-user {
   background: linear-gradient(223.23deg,hsla(0,0%,100%,.5) -39.74%,rgba(249, 239, 226, 0.5) 94.44%);
    border-radius: 8px;
    gap: .75rem;
    align-items: center;
    display: flex;
    border: solid 2px rgb(240, 131, 50)
}

.side-nav-user .naber {
    flex: 1;
    min-width: 1px;
}

.side-nav-user .naber .name {
    color: rgb(13, 20, 34);
    font-weight: 600;
    font-size: .85rem;
    line-height: .85rem;
    padding: 0px;
    margin: 0px;
}

.side-nav-user .naber .contact {
    color: rgb(100, 107, 121);
    font-size: 11px;
    margin-bottom: 0px;
    line-height: 18px;
}

.sidebar-link {
    display: flex;
    padding: .50rem .75rem;
    text-decoration: none;
    color: #222;
    transition: 0.2s;
    border-radius: 8px;
    font-size: .875rem;
    margin-bottom: 10px;
    align-items: center;
    gap: 8px;
}

.sidebar-link:hover {
    background: #f5f5f5;
}

.router-link-active {
    background: linear-gradient(73deg, #018349 16%, #094726) !important;
    color: #fff!important;
    font-weight: 600;
    font-family: "Mulish";
}

.sidebar-link:last-child {
    margin: 0px;
}

/* PAGE */

.layout-page {
    flex: 1;
    padding: 20px;
    overflow-x: auto;
    background: #f9fafb;
    padding-bottom: 75px;
    position: relative;
}

/* OVERLAY */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.layout-page .site-footer.footer-light {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-top: 55px;
}

.profile-user-head {
    gap: .75rem;
    align-items: center;
    display: flex;
}

.profile-user-head .naber1 {
    flex: 1;
    min-width: 1px;
}

.profile-user-head .naber1 .name {
    color: rgb(13, 20, 34);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5rem;
    padding: 0px;
    margin: 0px;
}

.profile-user-head .naber1 .contact {
    color: rgb(100, 107, 121);
    font-size: 13px;
    margin-bottom: 0px;
    line-height: 18px;
}
.profile-user-body .colss{
    border: 1px solid rgba(197, 193, 204, 0.3);
}
.profile-user-body .lable {
    letter-spacing: .18em;
    font-size: 12px;
    color: #696969;
    margin: 0px;
}

.profile-user-body .dif {
    overflow-wrap: break-word;
    color: rgb(28, 37, 51);
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
}

span.relationship, span.addressType {
  font-size: 11px;
  border-radius: 6px;
  background-color: #ffe2ce;
  color: #f96a00;
  padding: 3px 6px;
}
.action-buttons{
    gap: 5px;
  display: flex;
}
.action-buttons button {
    border-radius: 5px;
  color: #8a8a8a;
  font-family: Mulish;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: 35px;
  height: 35px;
  border: none;
  background: #f2f2f2;
  text-align: center;
  transition: 0.2s;
  /* align-items: center;
  display: flex;
  justify-content: center; */
}
.action-buttons button.delete{
    background: #f2f2f2;
    color: #cb0000;
}
.action-buttons button:hover {
    background: #e0e0e0;
    color: #000;
}
.action-buttons button.delete:hover {
    background: #cb0000;
    color: #fff;
}

/* MOBILE */
@media (max-width: 991px) {
    .user-sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        width: 260px;
        height: 100dvh;
        z-index: 999;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    }

    .user-sidebar.active {
        left: 0;
    }

    .layout-page {
        width: 100%;
        padding: 15px;
        padding-bottom: 75px;
    }

    .layout-page {
        margin-left: 0px;
    }
}