#trig-calculator-container {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding: 20px;
}

#trig-calculator-container .trig-calculator {
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  max-width: 320px;
  width: 100%;
}

#trig-calculator-container h2 {
  text-align: center;
  margin-bottom: 15px;
}

#trig-calculator-container input[type="number"] {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: none;
  margin-bottom: 10px;
}

#trig-calculator-container .toggle-wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

#trig-calculator-container button {
  width: 100%;
  padding: 10px;
  background: #ff9800;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#trig-calculator-container button:hover {
  background: #e68900;
}

#trig-calculator-container .results {
  margin-top: 15px;
  background: rgba(255,255,255,0.15);
  padding: 10px;
  border-radius: 10px;
}

#trig-calculator-container .results p {
  margin: 5px 0;
}
