/* MCAT Calculator Styles - Isolated to prevent theme conflicts */
.mcat-calculator-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  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);
}

.mcat-calculator-title {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

.mcat-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mcat-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mcat-section label {
  font-weight: 600;
  color: #333;
}

.mcat-input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
}

.mcat-range {
  font-size: 12px;
  color: #666;
}

.mcat-button {
  background-color: #000000;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

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

.mcat-results {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-left: 4px solid #000000;
}

.mcat-results h3 {
  margin-top: 0;
  color: #333;
  font-size: 20px;
}

.mcat-total-score {
  font-size: 24px;
  font-weight: 700;
  margin: 15px 0;
  color: #000000;
}

.mcat-section-scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.mcat-section-scores div {
  font-weight: 600;
}

.mcat-percentile {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

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

  .mcat-section-scores {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .mcat-calculator-container {
    padding: 10px;
  }

  .mcat-section-scores {
    grid-template-columns: 1fr;
  }

  .mcat-calculator-title {
    font-size: 20px;
  }
}
