/* ==========================================================================
   STILE PER LA BARRA SUPERIORE (TOPBAR)
   ========================================================================== */

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #035268;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 4px #30b0d5;
  z-index: 20;
}

.topbar-left,
.topbar-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.topbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none; /* evita che si sovrapponga ai click */
}

.topbar-logo {
  height: 52px;
}

.topbar-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.splash-button {
  padding: 4px 10px;
  font-size: 14px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  margin-right: 30px; /* 👈 margine a destra per distanziare dal bordo */
}

.topbar-title {
  font-family: sans-serif;
  color: #fafcfe;
}