* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.calculator {
  width: 300px;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#display {
  width: 100%;
  height: 60px;
  background: #333;
  color: white;
  text-align: right;
  font-size: 2rem;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

button {
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

button.operator {
  background: #f39c12;
  color: white;
}

button.equal {
  background: #27ae60;
  color: white;
  grid-column: span 2;
}

button:hover {
  opacity: 0.8;
}

button:active {
  transform: scale(0.95);
}
