/* AP Physics C Score Calculator Styles */
.appc-calculator-container {
  max-width: 800px;
  margin: 0 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;
}

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

.appc-calculator-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
}

.appc-calculator-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.appc-input-group {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.appc-input-group label {
  flex: 1;
  min-width: 200px;
  margin-right: 10px;
  font-weight: 500;
}

.appc-input-group input {
  width: 80px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.appc-input-help {
  margin-left: 10px;
  color: #666;
  font-size: 14px;
}

.appc-button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px 0;
}

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

.appc-results {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f7ff;
  border-radius: 6px;
  border-left: 4px solid #0066cc;
}

.appc-result-section {
  margin-bottom: 20px;
}

.appc-result-section h3 {
  margin-top: 0;
  color: #0066cc;
}

.appc-result-section p {
  margin: 10px 0;
  font-size: 16px;
}

.appc-result-section span {
  font-weight: 600;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
  .appc-calculator-container {
    padding: 15px;
  }

  .appc-calculator-section {
    padding: 15px;
  }

  .appc-input-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .appc-input-group label {
    margin-bottom: 5px;
  }

  .appc-input-help {
    margin-left: 0;
    margin-top: 5px;
    display: block;
  }
}
