/* Draw Length Calculator Styles */
.dlc-calculator-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.dlc-title {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.dlc-form {
  margin-bottom: 20px;
}

.dlc-input-group {
  margin-bottom: 15px;
}

.dlc-input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.dlc-input-group input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.dlc-height-inputs {
  display: flex;
  gap: 10px;
}

.dlc-height-inputs select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.dlc-note {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}

.dlc-button {
  width: 100%;
  padding: 12px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dlc-button:hover {
  background-color: #333333;
}

.dlc-secondary-button {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  margin-top: 10px;
}

.dlc-secondary-button:hover {
  background-color: #e5e5e5;
}

.dlc-result {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-left: 4px solid #000000;
}

.dlc-result.active {
  display: block;
}

.dlc-result h4 {
  margin-top: 0;
  color: #333;
}

#dlc-draw-length {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin: 15px 0;
}

#dlc-additional-info {
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 480px) {
  .dlc-calculator-container {
    padding: 15px;
  }

  .dlc-height-inputs {
    flex-direction: column;
    gap: 5px;
  }
}
