.device-wrapper .device-header-row {
  display: flex;
  align-items: center; }
  .device-wrapper .device-header-row .well {
    margin-bottom: 0; }
  .device-wrapper .device-header-row .device-status,
  .device-wrapper .device-header-row .device-status-log {
    white-space: pre-line; }
  .device-wrapper .device-header-row .process-status-column .well {
    display: flex;
    align-items: center;
    gap: 10px; }
    .device-wrapper .device-header-row .process-status-column .well .device-control-button {
      display: none; }
  .device-wrapper .device-header-row .device-control-buttons {
    row-gap: 10px;
    display: inline-flex;
    flex-direction: column; }
.device-wrapper.has-active-jobs .process-status-column .device-control-button {
  display: block; }

.device-control-button {
  border-radius: 0.25rem;
  padding: 6px 16px;
  margin-right: 10px;
  display: inline-flex;
  gap: 4px;
  align-items: center; }
  .device-control-button .bi {
    margin-bottom: -3px; }
  .device-control-button.bg-dark .bi {
    color: white; }

.view_Dashboard .process-status-column,
.view_Dashboard .device-control-column,
.view_Dashboard .device-status-log-wrapper {
  display: none; }
.view_Dashboard .device-wrapper .title {
  display: block; }

.device-status-wrapper {
  display: flex;
  align-items: center;
  gap: 5px; }

.device-status-log {
  height: 200px;
  display: block;
  overflow: scroll;
  font-size: 0.8em; }
  .device-status-log p {
    margin-bottom: 5px; }

.device-status-refresh-icon {
  background: rgba(128, 128, 128, 0.51);
  width: 15px;
  height: 15px;
  border-radius: 15px;
  display: none;
  flex-shrink: 0; }
  .device-status-refresh-icon.active {
    background: green; }

.btn-action {
  padding-right: 5px !important; }

.bg-green {
  background: #5cb85c; }

.white {
  color: white; }
  .white:hover {
    color: white; }

.device-status-refresh-icon.active {
  background: green; }

.job-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: all 0.05s ease-in-out; }

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed !important; }

.rounded {
  border-radius: 3px; }

.job-card-container {
  max-width: 100%;
  /* Use a CSS custom property for the margin so that dynamic values can be passed from Blade */
  margin: var(--job-margin); }

.job-card {
  max-width: 100%;
  display: flex;
  gap: 0.75rem;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start; }

.job-image-container {
  position: relative;
  width: 27rem;
  height: 15rem;
  flex-shrink: 0; }

.job-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%; }

.job-card-header {
  padding: 2px; }

.job-card-title {
  display: flex;
  align-items: center; }

.job-title {
  font-size: 1.3rem;
  font-weight: 400; }

.job-actions {
  margin: 0 10px; }

.job-description {
  margin: 0;
  color: #6b7280; }

.job-card-footer {
  display: flex;
  align-items: center;
  color: #6b7280;
  justify-content: space-between; }

.job-files-container {
  display: flex;
  justify-content: space-between; }

.job-file-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
  margin-top: 0.25rem;
  fill: currentColor; }

.job-failed-logs {
  margin-right: 10px;
  overflow: scroll;
  height: 60px; }

.job-log {
  margin-bottom: -9px; }

.large {
  padding: 5px 15px !important;
  margin: 0 4px; }

.large-icon {
  font-size: 1.7rem !important; }

.bold {
  font-weight: bold; }

.top-right {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem; }

.offline-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.5);
  z-index: 1; }

.offline-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 5rem;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.last-status {
  font-weight: bold; }

.last-status {
  font-weight: bold; }

.last-status-container {
  display: none; }

.error-modal-overlay {
  position: absolute;
  /* Stays in place relative to the viewport */
  top: 0;
  /* Aligns to the top of the screen */
  left: 0;
  /* Aligns to the left of the screen */
  width: 90% !important;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(255, 0, 0, 0.5);
  /* Red background at 50% opacity */
  z-index: 1;
  /* Stays on top of most elements */
  margin-left: 200px !important; }

.error-modal-content {
  position: fixed;
  /* Center the modal */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  /* White background */
  padding: 4rem;
  border-radius: 8px;
  /* More rounded for error emphasis */
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  /* Red-tinted shadow */
  min-width: 500px;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .error-modal-content .btn-container {
    display: flex;
    gap: 20px; }

.error-wrapper-title {
  color: #d32f2f;
  /* Dark red title */
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0rem; }

.error-wrapper-description {
  color: #555;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem; }

.error-description-container {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem; }

.error-description {
  color: #d32f2f; }

.error-modal-button {
  background-color: #d32f2f;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem !important;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s; }

.error-description-text {
  margin-bottom: 1rem;
  text-align: center; }

.restart-modal-button {
  background-color: #ffc107;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s; }

.error-modal-button:hover {
  background-color: #b71c1c; }

.job-status-active {
  background: rgba(183, 255, 183, 0.5); }

.job-status-repair {
  background: rgba(255, 196, 0, 0.08); }

.job-status-finished {
  background: rgba(0, 255, 4, 0.08);
  opacity: 0.7; }

.machines-column {
  align-items: stretch;
  display: flex; }
  .machines-column > .well {
    width: 100%;
    display: flex;
    background: rgba(100, 100, 100, 0.05); }
    .machines-column > .well > .device-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }

/* Disable text selection for the entire page */
.job-card-container {
  user-select: none;
  /* Standard for modern browsers */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */ }

@media (max-width: 1250px) {
  .job-image-container {
    width: 20rem;
    height: 12rem; } }
.warning-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 165, 0, 0.5);
  z-index: 1; }

.warning-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
  min-width: 500px;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.warning-wrapper-title {
  color: #ff9800;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0; }

.warning-description-container {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem; }

.warning-description-text {
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center; }

.warning-modal-button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem !important;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s; }

.warning-modal-button:hover {
  background-color: #e68900; }

.btn-container {
  display: flex;
  gap: 20px; }

.view_DeviceByPublicKey #main-navbar {
  display: none; }
.view_DeviceByPublicKey .main-content {
  margin-left: 0; }

.warning-description-text,
.error-description-text {
  font-size: 1em;
  max-height: 350px;
  overflow-y: scroll;
  line-height: 1.5em; }

@media (max-width: 1200px) {
  .device-wrapper .btn-action {
    padding: 16px 14px !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important; }

  .device-wrapper .macro-btn {
    padding: 18px  !important;
    font-weight: 600 !important;
    background: #ddd !important; }

  .device-wrapper .large-icon {
    font-size: 1.8rem !important;
    padding: 0.8rem !important; } }

/*# sourceMappingURL=App.css.map */
