.glow-btn {
  background: #ff3333; /* Красный фон при наведении */
  /* Усиленное (но не слишком яркое) свечение */
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.8),
              0 0 24px rgba(255, 40, 40, 0.6),
              0 0 36px rgba(255, 20, 20, 0.4);
   border-radius: 15px; 
   padding: 5px;
}
.glow-btn:hover{
    background: #bf0000; 
}
.t-submit {
    background: #ff3333 !important;
    /* Менее яркое свечение */
    box-shadow: 0 0 8px rgba(255, 60, 60, 0.6),
                0 0 16px rgba(255, 40, 40, 0.4) !important;
    border-radius: 15px !important;
    padding: 5px !important;
    color: white !important;
}
.t-submit:hover{
    background: #bf0000 !important; 
}
/* Заголовок и фильтры */
.courses-header {
  text-align: center;
  margin-bottom: 30px;
}

.age-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.filter-btn {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.3s;
}

.filter-btn.active {
  background-color: #f0f0f0;
  font-weight: bold;
}

/* Список курсов */
.courses-list {
  max-width: 800px;
  margin: 0 auto;
}

.course-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.course-item h3 {
  margin: 0;
  font-weight: normal;
  font-size: 18px;
}

/* Скрытие элементов */
.course-item.hidden {
  display: none;
}