body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

h1 {
    text-align: center;
    color: #eb0f6a;
    margin-bottom: 20px;
}

.top {
  text-align: center;
  font-weight: 270;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-right: 280px;
  margin-left: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 8px #eb0f6a (0.1, 0, 0, 0.1);
}
@media only screen and (max-width: 600px) {
  form {
    margin-right: 3px;
    margin-left: 3px;
  }
  input[type="number"] {
    width: 55px !important;
    padding: 10px !important;
  }
}

label {
    font-size: 16px;
    margin-bottom: 5px;
}

.date-inputs {
    display: flex;
    gap: 10px;
}

input[type="number"] {
    width: 70px;
    padding: 15px;
    border: 1px solid #eb0f6a;
    border-radius: 6px;
}

button {
    background-color: #eb0f6a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #050506;
}

#results {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: larger;
    font-style: normal;
    
    margin-top: 10px;
    padding: 10px;
    /* border: 1px solid #ccc; */
    
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    
}
  .content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    border: 0.5px solid #FF0000;
    border-radius: 5px;
    text-align: left;
    background-color: #fff;
    line-height: 1.5em;
    font-weight: 290;
  }
  .heading {
    color: #eb0f6a;
  }