
.imageFormatHeading {
  margin: 20px 0 10px 0;
  font-size: 22px;
  color: #0f172a;
  font-weight: 400;
}

/* Container */
.format-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 30px;
}

/* Card look */
.format-card {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #e3e8ef;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #eceeef;
}

/* Hover */
.format-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

/* Hide default radio */
.format-card input[type="radio"] {
  display: none;
}

/* Custom radio circle */
.format-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

/* Filled dot when checked */
.format-card input[type="radio"]:checked + .format-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* Checked card style */
.format-card input[type="radio"]:checked + .format-custom {
  border-color: #3b82f6;
}

/* Text */
.format-label {
  display: flex;
  flex-direction: column;
}

.format-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.format-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 720px) {
  .format-options {
    flex-direction: column;
  }
  .format-card {
    flex: 1 1 auto;
  }
}
