@font-face {
  font-family: 'Simple';
  src: url('../fonts/SimplePixelNew.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: Simple, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  background: #f0f0f0;
  font-size: 24px;
}

nav.navbar {
  width: 100%;
}

#app {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 400px;
}


form label {
  display: block;
  margin: 10px 0 5px;
}

form input,
form select,
form button {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #0056b3;
}

.img-fluid {
    width: 800px; /* 30% of viewport width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent inline spacing issues */
    margin-left: 0; /* Align left */
}



.btn-neutral {
  background-color: #d3d3d3; /* Light grey */
  color: #000; /* Black text */
  border: 1px solid #ccc;
  transition: background 0.3s;
}

.btn-neutral.btn-success {
  background-color: #28a745 !important;
  color: white !important;
}

.flash-green {
  background-color: #28a745 !important;
}

.btn-side {
  width: 16.67vw !important;
  float: left;
  margin-left: 0 !important;
  margin-bottom: 10px;
}

.btn-side.btn-success {
  background-color: #28a745 !important;
  color: white !important;
}


.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

#toggleCenter.btn-success,
#toggleGrayscale.btn-success,
#toggleMetadata.btn-success {
  background-color: #28a745 !important;
  color: white !important;
}



.btn-success {
    background-color: #28a745 !important;
    color: white !important;
}

.btn-neutral:not(.btn-success) {
    background: #d3d3d3;
    color: #000;
}


/* New class to align specific sections to the left */
.align-left {
  align-self: flex-start;
  width: 100%;
  justify: left;
}



