/* Estilos generales */
* {
  margin: 0;
  /*padding: 0;*/
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
   
body {
    overflow: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: rgb(67, 80, 104);
  color: white;
  height: 60px;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.app-name {
  font-size: 18px;
  font-weight: bold;
}

.search-container {
  position: relative;
  height: 36px;
  flex: 1;
  max-width: 300px;
  margin: 0px 20px;
}

.search-container input {
  width: 100%;
  height: 100%;
  padding: 10px;
  padding-right: 35px;
  border-radius: 15px;
  border: 1px solid #ccc;
}

.icon-search > img {
  position: absolute;
  height: 80%;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
}

.header-right {
  display: flex;
  align-items: center;
}

.user-label {
  margin-right: 15px;
}

.notification-icon {
  cursor: pointer;
  position: relative;
  margin-right: 15px;
}

.icon-bell > img {
  height: 28px;
  transform: scaleX(0.9) translateY(3px);
  filter: invert(70%) sepia(100%) saturate(5) hue-rotate(0deg);
}

.notification-count {
  position: absolute;
  top: 0;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 1px 5px 2px 5px;
  font-size: 12px;
}

.icon-menu {
  margin: 0px 10px;
}

.icon-menu > img {
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.icon-menu > img:hover {
  filter: invert(70%) sepia(100%) saturate(5) hue-rotate(0deg);
}

.icon-group {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  cursor: pointer;
  border-left: 5px solid transparent;
  padding-right: 5px;
}

.side-icon.selected {
  border-left: 5px solid rgb(239, 102, 50);
  background-color: rgb(179, 188, 197);
}

.side-icon:hover:not(.selected) {
  border-left: 5px solid rgb(70, 177, 225);;
  background-color: rgb(70, 177, 225);
}

.side-icon > img {
  width: 60%;
}

.logout-icon {
  margin-top: auto;
}

#container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

aside.left-sidebar {
  width: 50px;
  background-color: rgb(67, 80, 104);
  color: white;
}

main {
  flex: 1;
  display: flex;
  background-color: rgb(179, 188, 197);
  flex-direction: row;
  overflow: hidden;
}

app-scheduler {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.right-content {
  flex: 1; 
  display: flex; 
  flex-direction: column;
  overflow: auto;
}

aside.right-sidebar {
  width: 400px;
  background: #ccc;
}

footer {
  color: black;
  background-color: rgb(179, 188, 197);
  text-align: center;
  padding: 5px 0px;
}
