body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f8fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.app-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

button {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.result {
    margin-top: 1rem;
    font-weight: bold;
}

button:hover {
    background-color: #45a049;
}

.min-roll {
    color: red;
}

.max-roll {
    color: green;
}
footer {
  margin-top: 1rem;
}

#sourceLink {
  text-decoration: none;
  color: #888;
  font-size: 0.8rem;
  transition: color 0.3s;
}

#sourceLink:hover {
  color: #555;
}

.previous-results {
  margin-top: 2rem;
  border-top: 1px solid #e1e1e1;
  padding-top: 1rem;
}

#resultsList {
  padding: 0;
}

#resultsList li {
  margin-bottom: 0.5rem;
}
