/* Основные стили */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1rem; /* 16px базовый размер шрифта */
}

.text-lg {
  font-size: 1rem; 
}

#questions-container
{
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.px-6 {
    padding-left: 1.0rem;
    padding-right: 0.6rem;
  }


.text-3xl {
  font-size: 1.45rem;
}

.text-2xl {
    font-size: 1rem;
    line-height: 2rem;
  }

.text-sm {
    font-size: 0.9rem;
  } 

  
main {
    flex: 1;
}

/* Базовый размер текста для всего сайта */
body, p, div, span, a, li, input, textarea, button, select, label {
    font-size: .875rem; /* Эквивалент text-base в Tailwind CSS */
}

/* Стили хедера */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Стили карточек */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Форма */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Для избранных специальностей */
.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    cursor: pointer;
}

.favorite-btn.active {
    color: red;
} 