body {
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: linear-gradient(to right, #2980b9, #6dd5fa, #24c5c2); /* Adjust color values as needed */
  margin: 0;
  padding: 0;
  
}

.container {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  width: 100%;
  border: black solid;
  margin-bottom: 100px;
}

nav, .navbar-brand {
  font-size: xx-large;
  /* width: 200%; */
}

h2, #fileListConvertedImages {
  margin-top: 25px;
  margin-bottom: 20px;
}

input {
  margin-top: 30px;
  margin-bottom: 30px;
}

.display-input_img{
  background: rgb(228, 223, 223);
}

.progress {
  margin-top: 20px;
}

.panel-list {
  align-items: center;
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 25%;
}

/* Flex table styles */
.flex-table {
  display: flex;
  flex-wrap: wrap;
}

.flex-table-item {
  flex: 0 0 48%;
  margin: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

#fileList, #fileListConvertedImages {
  display: flex;
  flex-direction: column;
  max-height: 100px; /* Set a fixed height for the container */
  overflow-y: auto; /* Enable horizontal scrollbar when needed */
}  

.msg {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: large;
  font-weight: bold;
}

.mcl {
  font-size: larger;
}

.btn {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 200px;
  height: 50px;
}

.btn:hover:enabled {
  background-color: rgb(6, 125, 73);
  transform: scale(1.25);
}

/* Optional: Add some styling for the flex items */
#fileList > div , #fileListConvertedImages  > div {
  /* Your styles for each flex item */
  margin-bottom: 10px; /* Example margin between flex items */
}

