body {
  background-image: linear-gradient(to bottom right, #102542, #000);
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.card-container {
  background-image: linear-gradient(to bottom right, #1C3A4A, #000);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  max-width: 600px;
  width: 90%;
  justify-content: center;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}


.center-container {
  text-align: center;
}

.table-responsive-sm {
  /* overflow-x: auto; */
}

td {
  font-size: 14px;
}

.h2 {
  color: #dedede;
  text-align: center;
}

.form-control {
  background-color: #1C3A4A;
  border: none;
  color: #fff;
}

.form-group label {
  color: #dedede;
  text-align: start;
}


.form-control::placeholder {
  color: #aaa;
}

.btn-outline-primary {
  border-color: #17a2b8;
  color: #17a2b8;
}

.btn-outline-primary:hover {
  background-color: #17a2b8;
  color: #fff;
}

.form-text.text-danger {
  color: #ff7381;
  font-size: 10px;
  text-align: start;
}

.container {
  background-image: linear-gradient(to bottom right, #1C3A4A, #000);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 90%;
  justify-content: center;
  margin: auto;
  margin-top: 50px;
}

.btn {
  background-color: #17a2b8;
  border: none;
  color: #fff;
  padding: 2px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.btn:hover {
  background-color: #138496;
}

.btn-block {
  display: block;
  width: 100%;
}

th {
  font-size: 12px;
  white-space: nowrap;
  background-color: #0e4765;
  color: #fff;
}

td {
  font-size: 13px;
  white-space: nowrap;
}

td {
  color: #fff;
}

tr:nth-child(even) {
  background-color: #1e5a78;
}

tr:nth-child(odd) {
  background-color: #0c435f;
}

.modal-header {
  background-color: #0c435f;
  color: #fff;
  padding: 2px 16px;
  align-items: center;
}

.modal-content {
  background-color: #1e5a78;
}

.col-form-label {
  background-color: #0c435f;
}

label {
  font-weight: bold;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 768px) {

  .col-md-4,
  .col-md-6 {
    width: 100%;
  }
}


/* ///////////////// */


.tStatus {
  font-size: 13px;
  display: inline-block;
  padding-right: 8px;
  font-weight: bold;
}


input[type=text],
select,
textarea {
  padding: 6px;
  font-size: medium;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 6px 6px 6px 0;
  font-size: medium;
  display: inline-block;
}

input[type=submit] {
  background-color: #323232;
  color: white;
  padding: 6px 2px;
  font-size: medium;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #4f4f4f;
}

.container-black {
  border-radius: 5px;
  background-color: #181818;
  padding: 20px;
}



.table-fit {
  width: 1px;
}

.topcorner {
  position: absolute;
  top: 0;
  right: 0;
}


#drop-region {
  background-color: rgb(63, 63, 63);
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
  width: 600px;
  margin: 50px;
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

/* #drop-region:hover {
	box-shadow:0 0 145px rgba(255, 255, 255, 0.1);
} */

.drag-area.active {
  box-shadow: 0 0 145px rgba(255, 255, 255, 0.1);
  background-color: rgb(200, 146, 146);
  border: 2px solid #fff;
}

#image-preview {
  margin-top: 20px;
}

#image-preview .image-view {
  display: inline-block;
  position: relative;
  margin-right: 13px;
  margin-bottom: 13px;
}

#image-preview .image-view img {
  max-width: 100px;
  max-height: 100px;
}

#image-preview .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
}



/* Blinking */

.blinking {
  -webkit-animation: 2s blink ease infinite;
  -moz-animation: 2s blink ease infinite;
  -ms-animation: 2s blink ease infinite;
  -o-animation: 2s blink ease infinite;
  animation: 2s blink ease infinite;

}

@keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-ms-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Blinking */