/* Top menu */
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background-color: #1a1a1a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.top-menu.open {
  transform: translateY(0);
}

.menu-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-section.left {
  justify-content: flex-start;
}

.menu-section.center {
  justify-content: center;
  flex: 1;
}

.menu-section.right {
  justify-content: flex-end;
}

/* Stream form */
.stream-form {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
}

#stream-url {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #444;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 14px;
}

/* Menu buttons */
.menu-button {
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0 15px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  min-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-button:hover {
  background-color: #1976D2;
}

.menu-button i {
  font-size: 16px;
}

.menu-button.active {
  background-color: #1565C0;
}

.settings-button {
  padding: 8px 15px;
  background: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 10px;
}

.settings-button:hover {
  background: #555;
}

.settings-button.active {
  background: #2196F3;
}

/* Language selector */
.language-selector {
  margin-left: 10px;
}

.language-selector select {
  padding: 8px;
  background: #444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
} 