/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 20px;
  color: #444;
}

.input-section {
  margin-bottom: 15px;
}

label {
  font-size: 16px;
  margin-right: 10px;
}

#user-input {
  padding: 8px 10px;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button-section {
  margin-bottom: 20px;
}

button {
  padding: 10px 15px;
  font-size: 14px;
  margin: 0 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#check-btn {
  background-color: #4caf50;
  color: #fff;
}

#clear-btn {
  background-color: #f44336;
  color: #fff;
}

button:hover {
  opacity: 0.9;
}

.results {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-top: 10px;
}

.number {
  text-align: center;
}
.number span {
  display: block;
}
.number .valid {
  color: greenyellow;
}
.number .invalid {
  color: red;
}/*# sourceMappingURL=styles.css.map */