/* Ramsey Investment Calculator Styles */
.ramsey-investment-calculator {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.ramsey-calculator-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ramsey-investment-calculator h2 {
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.ramsey-form-group {
  margin-bottom: 20px;
}

.ramsey-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.ramsey-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

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

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

.ramsey-results {
  margin-top: 30px;
  padding: 20px;
  border-radius: 4px;
  background-color: #f9f9f9;
  display: none;
}

.ramsey-results.active {
  display: block;
}

.ramsey-loading {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.ramsey-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #000000;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ramsey-result-content {
  line-height: 1.6;
}

.ramsey-result-content h3 {
  margin-top: 0;
  color: #333;
}

.ramsey-result-content p {
  margin-bottom: 15px;
}

.ramsey-saturn-date {
  font-weight: bold;
  color: #000000;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .ramsey-calculator-container {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .ramsey-calculator-container {
    padding: 15px;
  }

  .ramsey-button {
    width: 100%;
  }
}
