.video-container {
  width: 200px;
  height: 120px;
  margin: 20px auto;
  border: 2px solid #000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.play-button {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 40px solid #000;
  border-bottom: 20px solid transparent;
}

.video-progress {
  position: absolute;
  bottom: 10px;
  width: 80%;
  height: 5px;
  background-color: #ddd;
  border-radius: 5px;
}

.video-progress-dot {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}

.buttons-container {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
  align-items: center;
  gap: 27px;
}

.sys-btn {
  padding: 10px 15px;
  border: 2px solid #fff;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  color: white;
  font-size: 18px;
   background: #f8f9fa;
    color: black;
}

.active {
    background-color: #6c5ce7;
      color: white;
}

.form-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 33px;
  color: #6a5be5;
}



.report-left-side {
  width: 50%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid gray;
  border-radius: 8px;
  margin: 5px;
}



.report-input {
  width: auto;
}

input.report-input.report-description {
  width: 99%;
}

.d-flex {
  display: flex;
  flex-direction: column;
  width: 100%;

}

.upload-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 10px;
  background-color: #f6f8fa !important;
  border-color: #6c5ce7;
  padding: 1.5rem !important;
  text-align: center !important;
  cursor: pointer;
  border-style: dashed;
  border-radius: 0.375rem;
}

.form-field {
  display: flex;
  /* gap: 20px; */
  gap: 0px;
}

.upload-text {
  margin-right: 10px;
}

.upload-icon {
  width: 35px;
  height: 35px;
  color: #6c5ce7;
}

.submit-button {
  padding: 11px 15px;
  border: 2px solid #fff;
  border-radius: 7px;
  background-color: #6c5ce7;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  color: white;
  font-size: 18px;
  width: 100%;

}

.hidden {
  display: none;
}


.result-container {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.result-safe {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.result-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.map-container {
  height: 200px;
  background-color: #eee;
  margin-top: 15px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-input::placeholder,
.check-input::placeholder {
  font-size: 15px;
}

/* .d-flex-textarea {
  width: 103%;
} */



.or-text {
  font-weight: bold;
}

.report-date,
.check-date {
  font-size: 15px;
  color: gray;
  padding: 14px !important;
}

.thank-you {
  text-align: center;
  padding: 30px;
  background-color: #d4edda;
  border-radius: 5px;
  margin-top: 20px;
}

input.check-input.check-description {
  width: 99%;
}

@media (max-width: 768px) {
  #report-form,
  #check-form {
    /* display: inline; */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .report-left-side {
    width: 100%;
  }

  .report-left-side img {
    width: 100%;
  }

  .buttons-container {
    display: inline;
    justify-content: space-between;
    margin: 0;
    align-items: center;
    text-align: center;
  }

  .form-field {
    display: inline;
  }

  input.report-input.report-description,
  input.check-input.check-description {
    width: -webkit-fill-available;
  }

}
i.fa.fa-exclamation-triangle,
i.fa.fa-file-text {
    margin-right: 10px;
}
i.fa.fa-arrow-right {
    margin-left: 10px;
}

.f-btn {
    padding: 0 20px !important;
}



/* File list styles */
#file-list {
  margin-top: 10px;
  width: 100%;
}

.file-items {
  border: 1px dashed #ddd;
  border-radius: 4px;
  padding: 5px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin: 5px 0;
  background: #f9f9f9;
  border-radius: 3px;
}

.file-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

.file-index {
  margin-right: 8px;
  color: #666;
}

.file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
}

.file-size {
  color: #666;
  font-size: 0.9em;
  margin-left: auto;
}

.file-actions {
  margin-left: 10px;
}

.remove-file {
  background: #ff4444;
  color: white;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.remove-file:hover {
  background: #cc0000;
}

.no-files {
  color: #666;
  font-style: italic;
  padding: 10px;
  text-align: center;
}