/* Minimal custom CSS to complement Bootstrap */

/* Custom number indicator in option headers */
.option-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-weight: bold;
  font-size: 18px;
}

/* Transition effects for cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom text colors to match original */
.text-danger {
  color: #CC0000 !important;
}

.border-primary {
  border-color: #4F8EB6 !important;
}

/* Custom phone number styling */
.phone-number {
  color: #4F8EB6;
  font-size: 28px;
  font-weight: bold;
}

/* Improve alert appearance */
.alert-danger {
  background-color: #fff8f8;
  border-left: 5px solid #CC0000;
  color: #333;
}

/* Add a subtle animation to phone number on hover */
.phone-number:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Make links more prominent */
a {
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: #CC0000;
  text-decoration: underline;
}

a.btn:hover {
  text-decoration: none;
}
