body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}



.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.header {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



.items-body {
  overflow-y: scroll;
  height: 90vh;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
}

.body-bg-color{
  background: linear-gradient(to right, #111111, #121212, #131313, #141414, #151515, #161616, #171717, #181818, #191919, #1a1a1a, #1b1b1b, #1c1c1c, #1d1d1d, #1e1e1e, #1f1f1f, #202020, #212121, #222222, #271f1f);
  color: #ffffff;
}

.item{
  padding-bottom: 2px !important;
}

.upload-button-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
}

.upload-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-button-text {
  font-size: 16px;
  font-weight: bold;
  z-index: 1;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #051cd6; /* Replace with your desired progress bar color */
}



.button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  height: 100%;

}

.button-container button {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #111111, #121212, #131313, #141414, #151515, #161616, #171717, #181818, #191919, #1a1a1a, #1b1b1b, #1c1c1c, #1d1d1d, #1e1e1e, #1f1f1f, #202020, #212121, #222222, #271f1f);
  color: #ffffff;
  cursor: pointer;
  /* Add any additional styles for the buttons */
}
