.background-page {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    padding: 0px;
    background-color: rgb(240, 240, 240);
    color: white;
}

.sidebar-ouvidoria {
    height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 24px;
}

.logo-sidebar-box {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

.logo-sidebar-img {
    width: 55px;
    height: auto;
}

/*Sidebar*/
.sidebar-ouvidoria {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 24px;
}

.logo-sidebar-box {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

#logo-sidebar {
    width: 55px;
    height: auto;
}

#logo-mobile {
    width: 0px;
}

.sidebar-menu-group {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 24px;
}

.sidebar-menu-btn-box {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px;
    margin-bottom: 12px;
}

.sidebar-menu-btn-box:hover {
    background-color: #FFF;
    cursor: pointer;
}

.sidebar-menu-btn-icon {
    width: 18px;
    margin-bottom: 2px;
}

.sidebar-menu-btn-label {
    color: black;
    font-size: 16px;
}

.profile-image-background {
    width: 45px;
    height: 45px;
    background-color: crimson;
    border-radius: 50%;
    padding: 2px;
    margin-bottom: 6px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.profile-name {
    color: black;
    font-weight: 700;
    font-size: 12px;
}

.sidebar-profile-group {
    height: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-section {
    height: 100%;
    width: calc(100% - 100px);
}

.content-header {
    height: 60px;
    width: 100%;
    padding: 16px 16px 16px 0px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.page-title {
    font-size: 1.2rem;
}

.content-page-background {
    width: 100%;
    height: 100%;
    padding: 16px 24px 16px 0px;
}

.content-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    border-radius: 8px;
    padding: 16px;
    background-color: rgb(244,244,244);
    color: black;
}


.profile-menu-absolute-box {
    height: fit-content;
    min-width: 100px;
    border-radius: 12px;
    background-color: white;
    border: 1px solid rgb(224,224,224);
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 12px;
    font-size: 14px;
    position: absolute;
    z-index: 1000;
  }

  .profile-menu-divider {
    height: 1px;
    width: 100%;
    background-color: rgb(224,224,224);
    margin-top: 4px;
  }

  .profile-menu-header {
    height: fit-content;
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(224,224,224);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .profile-menu-photo-box {
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
  }

  .profile-menu-photo-background {
    width: 35px;
    height: 35px;
    background-color: crimson;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .profile-menu-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .profile-menu-header-user-name-box {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .profile-menu-header-user-name{
    font-size: 14px;
    font-weight: 700;
    color: black;
  }

  .profile-menu-header-user-type-box {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }

  .profile-menu-header-user-type-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: crimson;
    margin-right: 4px;
  }

  .profile-menu-header-user-type-label {
    font-size: 13px;
    font-weight: 500;
    color: rgb(164,164,164);
  }

  .profile-menu-btn {
    width: 100%;
    height: fit-content;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin: 4px 4px 0px 4px;
  }

  .profile-menu-btn-icon {
    width: 14px;
    margin-right: 12px;
  }

  .profile-menu-btn-label {
    font-size: 14px;
    font-weight: 600;
    color: black;
  }

  .profile-menu-btn:hover {
    background-color: rgb(244,244,244);
    cursor: pointer;
  }