/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.input-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.college-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
}

.college-input h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

input, select {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  margin-bottom: 1rem;
}

button {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #ff6f61;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ff4a3d;
}

.results {
  display: none; /* Hidden by default */
}

#costChart {
  margin: 1rem 0;
}

.savings-goal {
  margin-top: 1.5rem;
}

.savings-goal h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.savings-goal p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6f61;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  input, select, button {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}