/* Dash app styling matching Docusaurus theme */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero header matching index.jsx gradient */
.app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.25rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #0d47a1, #1976d2 55%, #42a5f5);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px -8px rgba(13, 71, 161, 0.45);
  margin: 1.5rem 0 2rem;
}

.app-header h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Controls section as modern card */
.controls-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.18);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.controls-card:hover {
  box-shadow: 0 10px 26px -4px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

/* Dropdown styling */
.Select-control {
  border-radius: 8px !important;
  border-color: #d1d5db !important;
}

/* Live update section */
.live-update-section {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.live-update-section h4 {
  color: #0d47a1;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

/* Graph container */
.graph-card {
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.18);
  margin-bottom: 1.5rem;
}

/* Label styling */
label {
  color: #1f2937;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .app-header {
    padding: 2.5rem 1rem 1.5rem;
  }
  
  .controls-card {
    padding: 1rem;
  }
}

/* Custom styling for DAQ components */

/* Thermometer and Gauge units styling */
.dHABtm {
    font-size: 20px !important;  /* Pas de grootte aan naar wens */
    font-weight: bold;
}
