/* Main block container */
.fc-amana-range-block {
  width: 100%;
}

.fc-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.875rem;
}

.fc-text-4xl {
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.fc-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.fc-text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.fc-font-bold {
  font-weight: 700;
}

.fc-text-center {
  text-align: center;
}

.fc-mb-4 {
  margin-bottom: 1rem;
}

p.fc-text-xl.fc-text-center.fc-mb-6 {
  position: relative;
  padding-bottom: 1rem;
}

p.fc-text-xl.fc-text-center.fc-mb-6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ffb800 0%, rgba(255, 184, 0, 0) 100%);
}

.fc-mb-6 {
  margin-bottom: 1.5rem;
}

.fc-mb-12 {
  margin-bottom: 3rem;
}

.fc-mt-4 {
  margin-top: 1rem;
}

.fc-mx-auto {
  margin-left: auto;
  margin-right: auto;
}


.fc-max-w-4xl {
  max-width: 56rem;
}

.fc-grid {
  display: grid;
  gap: 2rem;
}

/* Card styles */
.fc-bg-white {
  background-color: #ffffff;
}

.protection-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.protection-card:hover {
  transform: translateY(-5px);
}

.fc-shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-content {
  padding: 1.5rem;
}

.card-border {
  height: 5px;
  width: 100%;
}

.card-border.gas {
  background-color: #333;
}

.card-border.electric {
  background-color: #ffd700;
}

/* Image styles */
.fc-w-full {
  width: 100%;
}

.fc-cursor-pointer {
  cursor: pointer;
}

/* List styles */
/* .fc-space-y-2 > * + * {
    margin-top: 0.5rem;   
} */
.fc-space-y-2>* {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  list-style: none;
}

.fc-space-y-2 {
  margin: 0 !important;
}

/* Button styles */
.fc-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
}

.fc-button-secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.fc-button-destructive {
  color: #dc2626;
}

/* Flex utilities */
.fc-flex {
  display: flex;
}

.fc-items-start {
  align-items: flex-start;
}

.fc-flex-grow {
  flex-grow: 1;
}

/* Color picker control styles */
.fc-color-control {
  margin-bottom: 1rem;
}

.fc-color-control label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* RichText component styles */
.fc-rich-text-container {
  width: 100%;
}

.fc-rich-text-container[contenteditable="true"] {
  outline: none;
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.fc-rich-text-container[contenteditable="true"]:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* Media upload button styles */
.fc-media-upload-button {
  width: 100%;
  padding: 1rem;
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
}

.fc-media-upload-button:hover {
  background-color: #e5e7eb;
}

/* Feature list styles */
.fc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fc-feature-item::before {
  content: "•";
  color: currentColor;
}

@media (min-width: 768px) {
  .fc-md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
   .fc-container {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .fc-container {
    padding: 3rem 1rem;
  }

  .fc-text-4xl {
    font-size: 2rem;
  }

  .fc-mb-6 {
    font-size: 1.125rem;
  }
}