
.headerOrang{
  background-color: #c97744;
  color: #eef2ff;
}
.zadanieOrang{
  color: #c97744;
  font-size: 24px;
  font-style: italic;
}
.titleOrang{
  color: #c97744;
  font-size: 28px;
}

.lesson-table {
  width: 100%;
  border-collapse: separate; /* важно */
  border-spacing: 0;
  margin-top: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #5f5f5f;
  background-color: #ece5d9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Ячейки */
.lesson-table th,
.lesson-table td {
  padding: 10px;
  text-align: center;
  border-right: 2px solid #e5b699;
  border-bottom: 2px solid #e5b699;
}

/* Убираем лишние границы */
.lesson-table tr td:last-child,
.lesson-table tr th:last-child {
  border-right: none;
}

.lesson-table tr:last-child td {
  border-bottom: none;
}

/* Заголовок */
.lesson-table th {
  background-color: #c97744;
  color: #ece5d9;
  font-weight: 500;
}

/* Ховер эффект */
.lesson-table tbody tr {
  transition: all 0.25s ease;
}

.lesson-table tbody tr:hover {
  background-color: #f5eee4;
  transform: scale(1.01);
}

/* Скругление углов */
.lesson-table tr:first-child th:first-child {
  border-top-left-radius: 16px;
}

.lesson-table tr:first-child th:last-child {
  border-top-right-radius: 16px;
}

.lesson-table tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.lesson-table tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.orangButton{
  background-color: #eadbc0;
  color: #c97744;
}
.orangButton:hover{
  background-color: #d8be8c;
  scale: 0.9;
}

.orangFon{
  background-color: #c97744;
  color: #eef2ff;
}
/* end lesson-table */