/* Apply font style and general body styling for dark mode */
body {
    display: block;
    font-family: 'Roboto', sans-serif; /* Custom font */
    background-color: #2c2c3c;/*; /* Dark background color */
    color: #e0e0e0; /* Light grey text color for contrast */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    align-items: center;      /* vertical center */
    justify-content: center; 
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #009bb3; /* Bright blue color for the title */
}

.intro {
    text-align: center;
    font-size: 1rem; /* Smaller font size */
    color: #888; /* Grey text color */
    margin-top: 10px;
}

.centered-container {
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

#dev-log {
  width: 400px;
  height: 200px;
  resize: none;
  overflow-y: scroll;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  font-family: monospace;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #1a1a24;
  color: #888;
}



form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #7c8799; /* Slightly lighter dark background for form */
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Darker shadow for form */
}

label {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0; /* Light grey text for labels */
}

input[type="file"] {
    display: block;
    width: 91.5%;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: 1px solid #444; /* Darker border color */
    border-radius: 4px;
    background-color: #333; /* Dark background for the input field */
    color: #e0e0e0; /* Light text for the input field */
}

button {
    background-color: #009bb3; /* Bright blue for the button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

button:hover {
    background-color: #97bbc0; /* Slightly darker blue when hovered */
}

footer {
    text-align: center;
    font-size: 1rem; /* Smaller font size */
    color: #888; /* Grey text color */
    margin-top: 10px;
}

footer a {
    color: inherit;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline; /* optional: add underline on hover */
  }


.beta-note {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffadad;
  color: #333;
  padding: 12px 16px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 999;
}




