/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling the body */
body {
  font-family: "Arial", sans-serif;
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS3zx110ribzxAIJ0u6n4DI1nSzkpe7uR_HhA&s);
  background-size: cover;
  background-repeat: no-repeat;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

/* Styling the container */
.container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgb(161, 124, 55);
  opacity: 5;
  box-shadow: rgba(162, 255, 2, 0.4) 5px 5px, rgba(162, 255, 2, 0.3) 10px 10px,
    rgba(162, 255, 2, 0.2) 15px 15px, rgba(162, 255, 2, 0.1) 20px 20px,
    rgba(162, 255, 2, 0.05) 25px 25px;
  width: 300px;
}

/* Styling the title */
h1 {
  color: #c6dbc7;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Input and Button Styling */
input[type="number"] {
  padding: 10px;
  width: 80%;
  margin: 10px 0;
  border: 1px solid #929292;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 15px;
}

button {
  background-color: #4caf50;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}

/* Table Result Styling */
#tableResult {
  margin-top: 20px;
}

/* Styling individual table entries */
.table-entry {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 5px 0;
}

/* Error message styling */
.error-message {
  color: red;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
