.fd-calculator {
  display: block;
  max-width: 100%;
}

.fd-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.fd-form {
  flex: 1 1 360px;
  min-width: 280px;
}

.fd-map-panel {
  flex: 1 1 360px;
  min-width: 280px;
}

.fd-map {
  width: 100%;
  min-height: 320px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.fd-row {
  margin: 0 0 12px;
}

.fd-row.fd-row-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fd-row label {
  font-weight: 600;
}

.fd-results {
  margin: 12px 0;
}

.fd-results-table {
  width: 100%;
  border-collapse: collapse;
}

.fd-results-table th,
.fd-results-table td {
  padding: 6px 0;
  border-bottom: 1px solid #e5e5e5;
}

.fd-results-table th {
  text-align: left;
  font-weight: 500;
}

.fd-results-table td {
  text-align: right;
  white-space: nowrap;
}

.fd-whatsapp-btn {
  display: flex;
  padding: 10px 16px;
  border: 1px solid;
  border-radius: 4px;
  text-decoration: none;
}

.fd-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd-whatsapp-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.fd-map-toggle {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  .fd-map-toggle {
    display: block;
  }

  .fd-map-panel {
    display: none;
    width: 100%;
  }

  .fd-calculator.fd-map-open .fd-map-panel {
    display: block;
  }
}

/* Warehouses Map Styles */
.fd-warehouses-map {
  width: 100%;
  height: 600px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}
