html,
body {
  min-height: 110vh;
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(168, 211, 255, 1) 0%, rgba(255, 244, 223, 1) 100%);
  background-repeat: no-repeat;
  background-size: cover;

  font-family: "Radio Canada Big", sans-serif;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

.navbar-component {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  text-decoration: none;
  color: #111;
  font-weight: 800;
  font-size: 1rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-link {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .navbar-component {
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
}

.btn-help-system {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background: #A8D3FF;
  border: none;
  color: black;
  border-radius: 100%;
  padding: 16px;
}

.btn-help-system:focus {
  color: black;
  background: #76b6f7;
}

@media (max-width: 768px) {
  .btn-help-system {
    bottom: 70px;
  }
}

.search-box {
  position: relative;
  width: 100%;
}

.search-box input {
  padding-left: 3rem;
  padding-right: 3rem;
}

.search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #888;
}

.search-box .clear-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #888;
}

.search-box .clear-icon:hover,
.search-box .clear-icon:focus {
  color: #555;
  text-decoration: none;
}


search-box {
  display: block;
  width: 100%;
  flex-grow: 1;
  min-width: 0;
}

/*navBar del compoente publico*/
.nav-component-private{
  display: block;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(168,211,255,1) 0%, rgba(255,244,223,1) 100%);
  background-attachment: fixed;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}