.dropdown-menu {
  transition: all 0.3s ease-in-out;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #1f2937;
}
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
.dropdown-menu::-webkit-scrollbar-track {
  background: #1f2937;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
.dropdown-menu.open {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.modal {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.modal .bg-gray-900 {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.modal.open .bg-gray-900 {
  opacity: 0.75;
}
.edit-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 2px;
  z-index: 40;
  border-radius: 0 0 0.5rem 0.5rem;
}
#managerList, #cityList, #networkList, #authLoginList, #modalManagerList, #editModalManagerList, #modalCityList, #editModalCityList, #modalNetworkList, #editModalNetworkList {
  z-index: 30;
}
.dropdown-menu li {
  border-radius: 0.5rem;
}
.dropdown-menu li:hover {
  border-radius: 0.5rem;
}
.dropdown-menu li[data-action="delete"]:hover {
  background-color: #7f1c1d;
}
.edit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
}
.network-badge {
  position: absolute;
  top: 9px;
  right: 8px;
  background-color: #f97316;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  z-index: 10;
  margin-left: 4px;
}
.city-badge {
  position: absolute;
  top: 9px;
  right: 8px;
  background-color: #16a34a;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  z-index: 10;
}
.manager-badge {
  position: absolute;
  top: 9px;
  left: 8px;
  background-color: #3b82f6;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.city-badge.no-network {
  right: 8px;
}
.main-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 16px;
  padding-bottom: 16px;
  background: linear-gradient(#101827 73.95%, transparent);
}
.cinema-list-container {
  margin-top: 100px;
  min-height: calc(100vh - 100px - 64px);
}
.pagination {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background-color: #1f2937;
  z-index: 20;
  height: 55px;
}
.pagination button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  line-height: 40px;
}
.pagination .page-counter {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 40px;
}
.pagination .cinema-count {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 40px;
}
.greeting {
  position: fixed;
  top: 16px;
  left: 16px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  z-index: 30;
}
.greeting .username {
  color: #6c62ff;
}
.cinema-button-container {
  /* Пустой, так как margin-left удален */
}
.cinema-button {
  text-align: left;
}
.cinema-title {
  padding-left: 95px;
}