/* ADR Chart Container Styles */
.adr-chart-container {
  height: 100%;
  max-height: 400px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

adr-cancellation {
  width: 100%;
  height: 100%;
}

#adr-cancellation svg {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Dropdown Styles */
.adr-dropdown-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
}

.adr-dropdown-label {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  text-align: center;
}

.adr-dropdown {
  min-width: 200px;
  max-width: 300px;
  padding: 8px 12px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  background-color: white;
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Axis styles */
#adr-cancellation .tick text {
  font-size: 12px;
  fill: #666;
}

#adr-cancellation .domain,
#adr-cancellation .tick line {
  fill: none;
  stroke: #ddd;
  stroke-width: 1px;
}

/* Axis label styles */
#adr-cancellation text {
  font-size: 14px;
  font-weight: 600;
  fill: #444;
}
