body {
  background-color: #E9D7FE;
  font-family: 'Arial', sans-serif;
}

.container {
  padding: 2rem 1rem;
  text-align: center;
}

.logo {
  max-width: 200px;
  animation: fadeIn 2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#output {
  margin-top: 20px;
  padding: 15px;
  background-color: #F3E8FF;
  border: 1px solid #D3B3FE;
  border-radius: 5px;
  transition: transform 0.5s ease;
  color: #1f2937;
}

#fileInputOutput {
  margin-top: 20px;
  padding: 15px;
  background-color: #F3E8FF;
  border: 1px solid #D3B3FE;
  border-radius: 5px;
  transition: transform 0.5s ease;
  color: #1f2937;
}

#textInput:focus+#output {
  transform: scale(1.05);
  background-color: #E9D7FE;
  color: #1f2937;
}

textarea {
  resize: none;
}

.container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #D3B3FE;
  color: white;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  display: inline;
  margin-right: 1rem;
}

ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.container-fluid small {
  display: block;
  margin-top: 1rem;
}

button {
  display: inline-block;
  margin-left: 10px;
  padding: 5px 10px;
  cursor: pointer;
  vertical-align: middle;
}

#fileInput {
  display: inline-block;
  width: calc(100% - 120px);
}

#clearFileInput {
  width: auto;
}

#downloadTextResults,
#downloadFileResults {
  width: auto;
}

#fileInputContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h2 {
  color: black;
}
