html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Custom Poll Options */
.poll-option {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid #f1f3f5;
  border-radius: 12px;
  background: #fff;
  color: #495057;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
}

.poll-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: #dc3545;
  background-color: #fff9fa;
}

.poll-option:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(220, 53, 69, 0.1);
}

.poll-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #dc3545;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.poll-option:hover::before {
  opacity: 1;
}

/* Slider caption fixes for small screens */
@media (max-width: 767px) {
  #heroCarousel .carousel-caption {
    bottom: 10%;
    left: 5%;
    right: 5%;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.6);
  }
  #heroCarousel .carousel-caption h1 {
    font-size: 1.5rem;
  }
}
