
#myipo img {
  height: 65px;
}

#titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

 #main-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

.title-divider {
  border: none;
  border-top: 4px solid red;
  margin: 0;
  width: 100%;
}

#sub-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #003366;
  margin: 0;
}

.myipo-header-wrapper #users {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  gap: 12px;
  padding-right: 2rem;
}

.myipo-header-wrapper #users > div {
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.2;
}

.myipo-header-wrapper .logout-button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  font-size: 1.8rem;
}

.myipo-header-wrapper .logout-button:hover {
  transform: scale(1.2);
  color: red;
}

@media (max-width: 768px) {
  .myipo-header-wrapper #logo-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 1rem;
  }

  .myipo-header-wrapper #users {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 1rem;
    text-align: left;
    width: 100%;
    margin-top: 10px;
  }

  .myipo-header-wrapper header {
    padding: 1rem;
  }
}
