/* Стили для кастомного меню ME603 */
.custom-menu603 {
  position: relative;
  display: inline-block;
}

/* Кнопка-триггер */
.menu603-trigger {
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.menu603-trigger:hover {
  background: #0056b3;
}

/* Выпадающее меню */
.menu603-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
  margin-top: 5px;
}

/* Пункты меню */
.menu603-item {
  border-bottom: 1px solid #f0f0f0;
}

.menu603-item:last-child {
  border-bottom: none;
}

.menu603-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.menu603-link:hover {
  background: #f8f9fa;
}

.menu603-icon {
  margin-right: 10px;
  font-size: 16px;
}