/* Add custom styles to the upload form */
#upload-form {
  max-width: 500px;
  margin: auto;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

/* Style the form labels and input fields */
#upload-form label {
  font-weight: bold;
  margin-bottom: 10px;
}

#upload-form input[type="file"] {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

/* Style the form error messages */
#upload-form .error {
  color: red;
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}

/* Style the file upload button */
#upload-form .file-upload {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#upload-form .file-upload:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

#upload-form .file-upload:active {
  transform: translateY(1px);
}

#upload-form .file-upload input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 100px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.d-flex {
  display: flex!important;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

h1.heading {
  font-size: 28px !important;
  margin-bottom: 20px !important;
}

.form-group.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.valid {
  font-weight: 700;
  color: #00cb00;
}

.invalid {
  color: red;
  font-weight: 700;
}

.image-croppped {
  background-image: url(/image.jpg);
  max-width: 100%;
  height: 80px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

ul.supported-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.supported-cpus {
  color: #898989;
  font-size: 11px;
  margin-bottom: 10px;
}

.supported-list li {
  font-size: 12px;
  padding: 5px 10px;
  background: white;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  font-weight: 700;
}