
.dropdown-server {
  position: relative;
  list-style: none;
  width: 100%;          
  max-width: 220px;     
  margin: 0 auto;        
}


.dropdown-header {
  font-size: 15px;
  margin-bottom: 4px;
  display: flex;
  align-items: center; 
  gap: 6px;
}


.dropdown-toggle-server {
  cursor: pointer;
  display: flex;
  align-items: center;    
  justify-content: center; 
  gap: 6px;
  font-size: 13px;
  color: #3384ff;
  user-select: none;
  width: 100%; 
}

.see-more {
  font-style: italic;
}

.caret-toggle {
  transition: transform 0.3s ease;
}


.server-dropdown {
  background: #242a39;
  border-radius: 8px;
  width: 100%;
  max-width: 220px;       
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}


.server-dropdown li {
  width: 100%;
  display: flex;
  align-items: center;     
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
 
}


.dropdown-server.active .server-dropdown {
  opacity: 1;
  max-height: 300px;
}

.dropdown-server.active .caret-toggle {
  transform: rotate(180deg);
}


@media (max-width: 480px) {
  .dropdown-server {
    width: 90%;     
    max-width: 220px;
    margin: 0 auto; 
  }

  .dropdown-toggle-server,
  .server-dropdown li {
    justify-content: center;
    align-items: center;
 
    font-size: 14px;
  }
}