:root {
  --mdc-theme-primary: #1F3368;
  --mdc-theme-secondary: #E64217;
}
.card-internals { 
  min-height: 350px;
  justify-content: space-between; 
  display: flex; 
  flex-direction: column;
}

.card-internals-chart { 
  height: 500px; 
  justify-content: space-between; 
  display: flex; 
  flex-direction: column; 
}

.card-content {
  padding: 8px;
}

.profile-class-narrow {
  width: 200px;
}

.chart-content {
  padding: 8px;
  position: relative;
}

.chart-canvas-large {
  padding: 8px;
  height: 420px;
}

.chart-canvas-small {
  max-height: 200px;
}

.level-label {
  margin: 8px;
  width: 180px;

}

.level-radio {
  margin: 8px;
}

.switch-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 16px;
}

th {
  width: 80px;
}

td {
  width: 180px;
}

.config-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #f9f9f9;
}

.config-card.disabled {
    opacity: 0.6;
    pointer-events: none;
    background-color: #f0f0f0;
}

/* Additional styles for enhancing the configuration sections */
#heat-config-card, #temp-config-card {
    transition: opacity 0.3s ease;
}

#heat-config-card.disabled, #temp-config-card.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Style for the command type selector to make it more prominent */
.app-command-type-select {
    margin-bottom: 20px;
    width: 100%;
}

/* Enhanced section headings */
.config-card .mdc-typography {
    font-weight: 500;
    margin-bottom: 12px;
}