@charset "UTF-8";
/* Контейнер для кнопок */
.audio-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  direction: ltr;
  justify-content: center;
  /* Общие стили для всех кнопок */
  /* Кнопка Играть (Зеленая) */
  /* Кнопка Пауза (Оранжевая) */
  /* Кнопка Стоп (Красная) */
  /* Эффект нажатия (для всех) */
  /* Стиль для отключенных кнопок (disabled) */
  /* Стили для карточек (чтобы сочетались с кнопками) */
}
.audio-controls .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  min-width: 120px;
}
.audio-controls .btn-play {
  background-color: #2ecc71;
  box-shadow: 0 4px 0 #27ae60;
}
.audio-controls .btn-play:hover:not(:disabled) {
  background-color: #27ae60;
  transform: translateY(-1px);
}
.audio-controls .btn-pause {
  background-color: #f39c12;
  box-shadow: 0 4px 0 #d35400;
}
.audio-controls .btn-pause:hover:not(:disabled) {
  background-color: #e67e22;
  transform: translateY(-1px);
}
.audio-controls .btn-stop {
  background-color: #e74c3c;
  box-shadow: 0 4px 0 #c0392b;
}
.audio-controls .btn-stop:hover:not(:disabled) {
  background-color: #c0392b;
  transform: translateY(-1px);
}
.audio-controls .btn:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.audio-controls .btn:disabled {
  background-color: #bdc3c7 !important;
  box-shadow: 0 4px 0 #95a5a6 !important;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
}
.audio-controls .sound-card {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
}
.audio-controls .sound-card.active {
  border-color: #2ecc71;
  background-color: #f0fff4;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.front-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  direction: rtl;
}

.front-sentences {
  direction: rtl;
}
.front-sentences .ar {
  font-family: Calibri;
  font-size: 48px;
  padding: 10px 5px;
  margin-left: 5px;
  margin-bottom: 5px;
  display: inline-block;
  border: 1px solid #cddc39;
  background-color: #fefff5;
}
.front-sentences .front-lesson-num {
  text-align: center;
  font-size: 30px;
  color: green;
}

.dars {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  direction: rtl;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #d2d2d2;
}
.dars .active {
  background-color: #cbcead !important;
}
.dars .words {
  border: 1px solid #cddc39;
  background-color: #fefff5;
  padding: 15px;
  border-radius: 6px;
  cursor: pointer;
}
.dars .ar {
  font-family: Calibri;
  font-size: 38px;
}
.dars .ru {
  direction: ltr;
  font-size: 16px;
  text-align: center;
  font-family: Calibri;
}
.dars .ru-sentence {
  flex: 2;
  direction: ltr;
  font-size: 24px;
  align-self: center;
}
.dars .play {
  width: 50px;
  height: 50px;
  font-size: 35px;
  color: red;
  align-self: center;
  cursor: pointer;
  border: 1px solid;
  border-radius: 50%;
  padding-bottom: 7px;
  padding-right: 5px;
  padding-left: 1px;
}
.dars .play:hover {
  color: green;
}

.sidebar .lesson-list .active a {
  color: red;
}
.sidebar .controls label {
  display: block;
}

.front-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  direction: rtl;
}/*# sourceMappingURL=style.css.map */