/*
.header_portal {
  display: flex;
  align-items: center;
  background-color: #1f7a8c; #52c3ff;
  padding: 10px 20px;
}*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  height: 140px;
  background-color: #1f7a8c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.header-search-bar-item {
  width: 100px;
  cursor: pointer;
  padding: 10px;
  background-color: white;
  color: #1f7a8c;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.header-profile {
  display: flex;/* flex-grow: 0, flex-shrink: 0, flex-basis: 20% */
  align-items: center;
  padding: 5px 10px;
  background-color: #afcad1; /* Adjusted for semi-transparent white background */
  color: white;
  border-radius: 10px;
}

.header-user-icon {
  width: 30px;
  margin-right: 10px;
}

.header-user-name-text {
  color: #246d7e;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;

}

.header-settings-icon {
  width: 30px;
  cursor: pointer;
}

.sidebar {
  width: 300px;
  background-color: #1f7a8c;
  height: calc(100vh - 60px);
  position: fixed;
  top: 140px; /* Adjusted to move the sidebar below */
  padding-top: 20px;
  color: white;
  box-sizing: border-box;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 15px;
  color: white;
  cursor: pointer;
}

.sidebar-item:hover {
  background-color: #3d9da4;
}

.icon {
  width: 30px;
  margin-right: 15px;
}

.sidebar-link {
  color: white !important;
  text-decoration: none;
  font-size: 18px;
}

.sidebar-link:hover {
  text-decoration: none;
  color: white !important; /* Ensure the color remains white on hover */
}

/*
.sidebar-link:hover {
  text-decoration: underline;
}
*/

.main-content-wrapper {
  margin-left: 15px;
  margin-top: 60px;
  background-color: #1f7a8c; /* Set background color to #1f7a8c for the space between header and content */
  /*min-height: calc(100vh - 60px);*/
  padding-top: 20px;
  box-sizing: border-box;
}

.content {
  margin-left: 270px;
  margin-top: 40px; /* Adjusted to move the content area below */
  padding: 20px;
  background-color: white; /* Set background color to white */
  box-sizing: border-box;
}

.sidebar-link {
  color: black;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.sidebar-link.active {
  background-color: #1C456D;
  color: black;
}

/*Include external styles inline for the disabled option*/
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.blocked-icon {
    color: red;
    font-size: 20px;
}
.tooltip-text {
    visibility: hidden;
    width: 80px;
    background-color: red;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}