/* Quick Start Cards */
.quick-start-card {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.quick-start-card:hover {
  background: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}

.quick-start-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: #fff;
  font-size: 1rem;
}

.quick-start-icon.bg-orange {
  background-color: #fd7e14;
}

.quick-start-content {
  flex: 1;
  min-width: 0;
}

.quick-start-content h6 {
  margin: 0 0 0.125rem 0;
  font-weight: 600;
  font-size: 0.875rem;
  color: #212529;
}

.quick-start-content small {
  color: #6c757d;
  font-size: 0.75rem;
  display: block;
  line-height: 1.3;
}

/* Card improvements */
.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
  border-bottom: none;
}

.card-header h5 {
  font-size: 1rem;
  font-weight: 600;
}

/* Badge styling */
.badge {
  font-weight: 600;
  font-size: 0.75rem;
}

/* Button improvements */
.btn-group .btn {
  border-radius: 0.25rem;
}

/* Setup progress checklist */

.setup-progress-card .list-group-item:last-child {
  border-bottom: 0;
}
