@charset "UTF-8";

body,
html {
  height: 100%;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

/* 動画表示画面に関するスタイル */
.fa-pause {
  padding-right: 2px;
}
/* 通常再生時のスタイル */
.video_container {
  position: relative;
  width: 100%;
}

/* 通常表示時のコントロール */
#videoControls {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

/* フルスクリーン時のコントロール */
.video_container.fullscreen #videoControls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  margin-top: 0;
  padding: 20px;
  z-index: 1001;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video_container.fullscreen.inactive #videoControls {
  opacity: 0;
}

.video_container.fullscreen #playPauseButton,
.video_container.fullscreen #fullscreenButton,
.video_container.fullscreen #playbackRateButton {
  color: white;
  opacity: 1;
}

#progressBarContainer {
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
}

#progressBarContainer:hover {
  height: 8px;
}

#progressBar {
  width: 0%;
  height: 100%;
  background-color: #ff0000;
  border-radius: 2px;
  position: relative;
}

/* ボタンスタイル */
#playPauseButton,
#fullscreenButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  padding-left: 11px;
}

.video_container.fullscreen #playPauseButton:hover,
.video_container.fullscreen #fullscreenButton:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.video_container.fullscreen #progressBarContainer {
  background-color: rgba(255, 255, 255, 0.3);
}

.video_container.fullscreen #progressBar {
  background-color: #ff0000;
}

.video_container.fullscreen #timeDisplay {
  color: white;
}

/* 再生速度セレクトボックスのスタイル */
#playbackRateContainer {
  margin-left: 10px;
}

#playbackRateSelect {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

#playbackRateSelect:focus {
  outline: none;
  border-color: #66afe9;
}

/* プログレスバーのスタイル */
#progressBarContainer {
  position: relative;
  flex: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 15px;
  cursor: pointer;
  border-radius: 2px;
}

#progressBarContainer:hover {
  height: 8px;
}

#allowedProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.2); */
  background-color: rgb(80 185 88 / 59%);
  /* 早送り可能範囲の色 */
  border-radius: 2px;
  z-index: 1;
}

#progressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ff0000;
  /* 再生済みの部分 */
  border-radius: 2px;
  z-index: 2;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .video_container.fullscreen #videoControls {
    padding: 15px;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
  }

  .video_container.fullscreen video {
    width: 100%;
    height: auto;
    max-height: 100vh;
  }
}
/* 動画表示画面に関するスタイルここまで */

h1 {
  font-size: 28px;
  margin: 10px 0 10px 0;
}
h2 {
  font-size: 20px;
  margin: 10px 0 10px 0;
}
h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #2D5A8E;
}
h4 {
  font-size: 16px;
  margin: 10px 0 10px 0;
}
h5 {
  font-size: 14px;
  margin: 10px 0 0px 0;
}
h6 {
  font-size: 13px;
  margin: 10px 0 0px 0;
}

input[type="number"],
input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  margin: 2px 0;
  display: block;
  font-size: 16px;
  padding: 3px;
  border-radius: 5px;
  border: solid 1px #cccccc;
  box-sizing: border-box;
  text-align: right;
}
input[type="number"] {
  text-align: right;
}

input[type="text"],
textarea,
select {
  text-align: left;
  /* min-height: 130px; */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  -moz-appearance: textfield !important;
}

.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  margin: 10px auto;
  display: block;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
  border: solid 1px #cccccc;
  box-sizing: border-box;
}
.login label {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0 10px 0;
  display: block;
  text-align: center;
}

.login input[type="submit"] {
  background-color: #45b138;
  position: inherit;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin: 30px auto;
  display: block;
}
.login input[type="submit"]:hover {
  opacity: 0.8;
}

input[type="submit"],
.fixed_submit_btn {
  background-color: #296b21;
  color: #fff;
  padding: 15px 25px;
  border: none;
  border-radius: 4px;
  font-size: 22px;
  margin: 10px 0 30px 0;
  display: block;
  cursor: pointer;
}
input[type="submit"] {
  /* position: fixed; */
  /* bottom: 10%; */
  /* left: 1%; */
  /* z-index: 9; */
}
.fixed_submit_btn {
  background-color: #0c8978;
  color: #fff;
  padding: 5px 20px;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  margin: 20px 0;
  display: block;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #296b21;
}

.err_msg {
  color: red;
  font-size: 14px;
  display: none;
}

input[type="checkbox"] {
  width: 13px;
  height: 13px;
  transform: scale(1.4); /* 大きさの調整 */
  appearance: none; /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none; /* ChromeやSafari用のスタイル無効化 */
  -moz-appearance: none; /* Firefox用のスタイル無効化 */
  border: 1px solid #007bff; /* ボーダー色を青に設定 */
  background-color: white; /* 背景色を白に設定 */
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: #007bff; /* チェック時の背景色を青に設定 */
  border-color: #007bff; /* チェック時のボーダー色 */
}

input[type="checkbox"]:checked::before {
  content: "✓"; /* チェックマーク */
  color: white; /* チェックマークの色 */
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 13px; /* チェックボックスのサイズに合わせる */
}

input[type="checkbox"]:disabled {
  background-color: #e9ecef; /* disabled時の背景色を薄いグレーに設定 */
  border-color: #ced4da; /* disabled時のボーダー色を薄いグレーに設定 */
  cursor: not-allowed; /* disabled時のカーソルを変更 */
}

input[type="checkbox"]:disabled:checked::before {
  color: #adb5bd; /* disabled時のチェックマークの色を薄いグレーに設定 */
}

.txt_center {
  text-align: center !important;
}

.red {
  color: #f00;
  font-weight: bold;
}

.txt_right {
  text-align: right !important;
}

body#top {
  margin: 0;
  padding: 0;

  background: rgb(82 82 82);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
}

@keyframes subtleLoginBounce {
  0% {
    transform: scale(1, 1) translate(0%, 10px);
    opacity: 0;
  }

  30% {
    transform: scale(1.02, 0.98) translate(0%, 5px);
    opacity: 1;
  }

  50% {
    transform: scale(0.98, 1.02) translate(0%, -3px);
  }

  70% {
    transform: scale(1.01, 0.99) translate(0%, 2px);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0);
  }
}

.login-container {
  background-color: #1B3A5C;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: subtleLoginBounce 1s ease-out;
}

.login-container form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.login-container h1 {
  font-size: 21px;
  color: #fff;
}

.login-container a {
  display: inline-block;
  width: 100%;
  max-width: 250px;
}

.login-container a img {
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.login-container a img:hover {
  transform: scale(1.05);
}

.login-container .signin-description {
  color: #fff;
  font-size: 14px;
  margin-top: 0px;
  text-decoration: none;
  cursor: default;
  margin-bottom: 0;
}

/* グローバルスタイル */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;

  display: flex;
  flex-direction: column;
}

/* ヘッダー */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.header_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.header_inner h1 {
  margin: 0;
  font-size: 20px;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.global_nav,
.user_nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.global_nav a,
.user_nav a {
  color: #333;
  text-decoration: none;
}

/* メインレイアウト */
main {
  flex: 1; /* コンテンツ部分をフレックスで伸縮させる */
}
.main_div {
  max-width: 1200px;
  padding: 0 20px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  flex: 1; /* コンテンツ部分をフレックスで伸縮させる */
}

/* メインビュー */
.main_view {
  padding: 0 20px;
}

/* 動画プレイヤー */
.video_container {
  margin-bottom: 20px;
}

#video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 10px;
}

.video_meta {
  font-size: 13px;
  color: #666;
}

.view_count {
  margin-right: 15px;
}

/* コンテントヘッダー */
.content_header {
  margin: 20px 0;
}

.video_title {
  font-size: 20px;
  margin: 0 0 10px 0;
}
.video_title_h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: #3c3c3c;
  font-weight: normal;
  padding: 5px 10px;
}

/* カテゴリー */
.categories ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  gap: 10px;
}

.categories li {
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 12px;
}

/* アクションボタン */
.action_buttons {
  margin: 20px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
}

.test_button.primary {
  background: #ff4081;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  box-sizing: border-box;
}
.test_button.primary:hover {
  background: #f42068;
}

#testButtonContainer .disabled {
  background: #cccccc !important;
  pointer-events: none;
}

.favorite_button.secondary {
  background: #fff;
  color: #666;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* サイドバー */
/* サブビュー全体 */
.sub_view {
  width: 350px;
  background: transparent;
  padding: 0;
}

/* 習熟度セクション */
.proficiency_section {
  background: #1B3A5C;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.proficiency_section h2 {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #fff;
  font-weight: normal;
}

.proficiency_section h3 {
  font-size: 14px;
  margin: 0 0 5px 0;
  color: #fff;
  font-weight: normal;
}

.proficiency_section p {
  margin: 0 0 10px 0;
}

/* プログレスバー */
.watch_rate_bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.watch_rate_bar_fill {
  height: 100%;
  background: #fff;
  transition: width 0.3s ease;
}

/* 星評価 */
.watch_times_stars {
  font-size: 16px;
  letter-spacing: 2px;
}

.star {
  color: #ffd700;
}

.empty-star {
  color: rgba(255, 255, 255, 0.3);
}

/* 区切り線 */
.watch_history,
.watch_test {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 15px;
}

/* カテゴリーナビ */
.category_nav {
  margin-bottom: 20px;
}

.category_nav ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category_nav li {
  flex: 1;
}

.category_nav a {
  display: block;
  text-align: center;
  padding: 8px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

.category_nav a.active {
  background: #333;
  color: #fff;
}

/* 関連動画リスト */
.related_videos .each_mov {
  background: #fff;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.related_videos .video_meta {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 12px;
  margin-bottom: 10px;
}

.related_videos video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.related_videos h4 {
  font-size: 14px;
  margin: 0 0 10px 0;
  color: #333;
}

/* 関連動画の視聴完了率 */
.related_videos .watch_rate {
  margin-bottom: 10px;
}

.related_videos .watch_rate_bar {
  background: #eee;
  margin: 5px 0;
}

.related_videos .watch_rate_bar_fill {
  background: #00bcd4;
}

.related_videos .watch_rate p,
.related_videos .watch_times p {
  font-size: 13px;
  color: #666;
}

/* その他のカテゴリー */
.category_list {
  margin-top: 20px;
}

.category_list h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 10px 0;
}

.category_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category_list li {
  margin-bottom: 8px;
}

.category_list a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

/* プログレスバーの色分け（完了率に応じて） */
.watch_rate_bar_fill[style*="width: 100%"] {
  background: #4caf50;
}

.watch_rate_bar_fill[style*="width: 8"] {
  background: #ffc107;
}

.watch_rate_bar_fill[style*="width: 6"],
.watch_rate_bar_fill[style*="width: 4"],
.watch_rate_bar_fill[style*="width: 2"] {
  background: #ff5722;
}

/* 視聴時間表示 */
.video_duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 12px;
}

/* ボタン表示時のフェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#testButtonContainer {
  animation: fadeIn 1s ease-in-out;
}

.action_buttons button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* 星のスタイル */
.star {
  color: gold;
  font-size: 24px;
}
/* 追加の視聴回数のスタイル */
.extra-count {
  font-size: 18px;
  margin-left: 5px;
  color: #cdcdcd;
}

.empty-star {
  color: #ccc;
  font-size: 24px;
}

#historyContainer ul,
#answerContainer ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
}

#playPauseButton {
  /* padding: 12px 36px; */
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: #E8740C !important;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  /* width: 140px; */ /* ボタン幅を少し広めに調整 */
  text-align: center;
  white-space: nowrap; /* 改行を防ぐ */
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 目立つ影 */
}

#playPauseButton:hover {
  background-color: #C86200;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

#playPauseButton:active {
  background-color: #A85400;
  transform: scale(0.97); /* 押し込む感覚 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* 軽い影 */
}

footer {
  padding: 10px 0;
  background-color: #1B3A5C; /* フッターの背景色 */
  position: relative;
  bottom: 0;
  width: 100%;
}
footer p {
  text-align: center;
  padding: 0;
  color: #fff;
}
.single_content {
  width: 100%;
  margin: 25px auto;
  padding: 30px;
  /* padding: 30px; */
  /* background-color: #f7f9fc; */ /* 柔らかい背景色 */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */ /* 軽い影で浮き上がらせる */
  /* color: #333; */
  /* font-size: 16px; */
  /* line-height: 1.6; */
}

/* タイトルのスタイル */
.single_content h1 {
  /* font-size: 24px; */
  /* color: #1B3A5C; */
  margin-bottom: 20px;
  /* text-align: center; */
}

/* フォーム内のラベルとボタン */
.single_content label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.single_content input[type="file"] {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.single_content button[type="submit"] {
  background-color: #E8740C;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.single_content button[type="submit"]:hover {
  background-color: #C86200;
}

.single_content .csv-download a {
  display: block;
  color: #1B3A5C;
  text-decoration: none;
  font-weight: bold;
  margin-top: 3px;
  font-size: 16px;
}

.single_content .csv-download a:hover {
  text-decoration: underline;
}

.single_content .message {
  margin-top: 20px;
  padding: 15px;
  background-color: #e0f7fa; /* 成功メッセージの背景色 */
  color: #00796b;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}
.single_content form {
  margin-bottom: 20px;
}

.single_content h1 {
  /* font-size: 24px; */
  /* color: #1B3A5C; */
  /* margin-bottom: 30px; */ /* タイトル下に余白を追加 */
}

.csv-download {
  margin-top: 30px; /* ダウンロードセクション上部の余白 */
  padding: 15px;
  background-color: #f1f8e9; /* 背景色を追加 */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影をつけて強調 */
}

.csv-download a {
  display: inline-block;
  color: #1B3A5C;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin: 8px 0; /* 各リンクに上下の余白 */
}

.csv-download a:hover {
  color: #C86200;
  text-decoration: underline;
}

.account-block {
  border: 2px solid #333;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
}

.account-header {
  display: flex;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.viewing-history th,
.viewing-history td {
  padding: 8px;
  text-align: left;
}

.operation-log {
  margin-left: 20px;
  padding: 5px;
  list-style-type: none;
  font-size: 12px;
}

.operation-log li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.operation-log .icon {
  width: 18px;
  height: 18px;
}

table {
  border: solid 1px #cccccc;
}

table td,
table th {
  border: solid 1px #cccccc;
}

#compatibilityChecks {
  background: #1B3A5C12;
  color: #555;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.compatibility-message {
  margin-left: 20px;
  color: #555;
  font-size: 14px;
  white-space: pre-line;
  /* 改行を有効にする */
}

.video_description p {
  line-height: 200%;
  color: #464646;
}

.compatibility-message.error {
  color: red;
}

.compatibility-message.success {
  color: green;
}

.underline_and_bold {
  text-decoration: underline;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .login-container h1 {
    font-size: 18px;
  }
  .header_inner {
    max-width: 100%;
  }
  .main_div {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .main_view {
    padding: 0;
  }
  .test_button.primary {
    box-sizing: border-box;
  }
  .proficiency_section {
    box-sizing: border-box;
  }
  .sub_view {
    width: 100%;
    box-sizing: border-box;
  }
}

/* 共通言語選択スタイル */
.language-switcher {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 12px;
  visibility: visible !important;
  opacity: 1 !important;
}

.language-switcher select {
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 28px 4px 10px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.language-switcher select:focus {
  border-color: rgba(0, 123, 255, 0.6);
  background: rgba(0, 123, 255, 0.2);
}

.language-switcher select option {
  color: #333333;
}

.language-switcher .lang-link {
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.language-switcher .lang-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
}

.language-switcher .lang-link.active {
  color: #ffffff !important;
  background: rgba(0, 123, 255, 0.8);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.language-switcher .lang-separator {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  user-select: none;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
