.my_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #07375f;
    color: #111827;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
	background-color: #2563EB;
	min-height: 60px; height: auto; flex-wrap: wrap; width: 100%; box-sizing: border-box;
	border: none;
	border-radius: 0;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-left img {
    height: 40px;
    /* ajusta el tamaño del logo */
    width: auto;
}

.navbar-title {
    font-size: 15px;
    font-weight: bold;
}

.navbar-left a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;

}

.navbar-left a:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.navbar-right {
    flex-wrap: wrap;
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar-right a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;

}

.navbar-right a:hover {
    box-shadow: 0px 5px 15px #F97316;
}

.logout{
  background: none;
  border: none;
  color: #111827;
  font-size: 1rem;
  cursor: pointer;
}

.logout:hover {
  text-decoration: underline;
  color: #F97316;
}
