/*
 * Copyright 2024 Joe Meszaros
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/* Language Selector Styles */
.language-selector {
  padding: 10px;
}

.language-select {
  background: transparent;
  border: 1px solid #555;
  border-radius: 4px;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 120px;
}

.language-select:hover {
  border-color: #777;
}

.language-select:focus {
  border-color: #999;
}

.language-select option {
  background: #333;
  color: #fff;
  padding: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-selector {
    margin-left: 10px;
    margin-right: 5px;
  }

  .language-select {
    font-size: 11px;
    padding: 3px 6px;
  }
}

/* Dark theme compatibility */
.language-select {
  background-color: rgba(0, 0, 0, 0.3);
}

.language-select:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.language-select:focus {
  background-color: rgba(0, 0, 0, 0.7);
}
