.accessible-link {
  display: inline-block;
  padding: 4px;
}
.accessible-link:hover {
  background-color: #e5e7eb;
}
.accessible-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Carousel Styles */
.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.carousel-slide.active {
  opacity: 1;
  display: block;
}

/* Form Card Styles */
.form-card {
  border: 2px solid #ccc;
  background-color: white;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.form-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border-color: #06b6d4;
  transform: translateY(-2px);
}

.form-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-card-title {
  font-weight: bold;
  font-size: 1.125rem;
  color: #000;
}

/* Action Button Styles */
.action-button-primary {
  display: inline-block;
  background-color: #06b6d4;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.action-button-primary:hover {
  background-color: #0891b2;
}

.action-button-secondary {
  display: inline-block;
  border: 2px solid #06b6d4;
  color: #06b6d4;
  background-color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.action-button-secondary:hover {
  background-color: #f0f9fa;
}

.action-button-danger {
  display: inline-block;
  background-color: #dc2626;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.action-button-danger:hover {
  background-color: #b91c1c;
}

.action-button-full-width {
  display: block;
  width: 100%;
  background-color: #06b6d4;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.action-button-full-width:hover {
  background-color: #0891b2;
}

/* Form Button Styles */
.form-button-submit {
  background-color: #06b6d4;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

.form-button-submit:hover {
  background-color: #0891b2;
}

.form-button-cancel {
  background-color: white;
  color: #333;
  border: 2px solid #ccc;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  flex: 1;
  display: inline-block;
}

.form-button-cancel:hover {
  background-color: #f9f9f9;
  border-color: #999;
}

.form-button-container {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}