.highlight {
  color: #00ffff;
}

mark {
  background-color: #facc15;
  padding: 0 2px;
  border-radius: 0.25rem;
}

.form-check {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.form-check input {
  margin-right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #4b5563;
  border-radius: 0.375rem;
  background-color: #374151;
  cursor: pointer;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-check input:checked {
  background-color: #00ffff;
  border-color: #00ffff;
}

.form-check input:checked::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.6rem;
  border: solid #0b202c;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}

.form-check label {
  font-weight: 500;
  color: #f8fafc;
  margin-left: 0.5rem;
}

.loader-container {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-top-color: #06b6d4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.7);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.image-preview-mode .upload-content {
  display: none !important;
}

.image-preview-mode .preview-content {
  display: flex !important;
}

.preview-content {
  display: none;
}
