/* src/css/toolbar.css (File Baru) */

.sticky-toolbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 98; /* Di bawah welcome screen, tapi di atas konten lain */

  max-width: 450px; /* Samakan dengan max-width .mobile-container */
  transform: translateY(-50%);

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;

  /* Efek Glassmorphism */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  /* Kondisi awal: tersembunyi di atas layar */
  opacity: 0;
  visibility: hidden;

  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* Kelas untuk menampilkan toolbar */
.sticky-toolbar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toolbar-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.toolbar-names,
.toolbar-guest {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--main-text-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
