/* Selection Page Styles */
.selection-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.selection-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.selection-card {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 25px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.selection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0.7;
  transition: width 0.3s ease;
}

.selection-card:hover::before {
  width: 6px; /* Keep thin strip or expand if desired, I prefer keeping it thin but clearer opacity */
  opacity: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.card-content {
  flex: 1;
}

.card-content h3 {
  margin: 0 0 8px;
  color: #1e3c72;
  font-size: 18px;
}

.card-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.card-arrow {
  font-size: 24px;
  color: #cbd5e0;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.selection-card:hover .card-arrow {
  color: #667eea;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .selection-container {
    padding: 20px;
  }

  .selection-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .card-icon {
    margin: 0 0 15px 0;
  }

  .card-arrow {
    display: none;
  }
}
