/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 140:0 Unexpected "<"

**/
<style>
/* CSS for ticketnummer system */


/* Baggrund */
body {
  background: #fdf2f2;
}

/* Ydre wrapper med billede + formular */
.repair-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  align-items: flex-start;
}

/* Venstreside: billede */
.repair-image img {
  max-width: 100%;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Højreside: input og tekst */
.repair-container {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  padding: 20px 0;
}

/* Overskrift og beskrivelse */
.repair-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.repair-container p {
  margin-bottom: 20px;
  color: #2f2f2f;
}

/* Inputfelt */
.repair-container input[type="text"] {
  width: 100%;
  padding: 30px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 16px;
}

/* Knapwrapper (højrejusteret) */
.button-wrapper {
  text-align: right;
}

/* Søg-knap */
.button-wrapper button {
  padding: 15px 25px;
  background-color: #CFF394;
  color: #2f2f2f;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.button-wrapper button:hover {
  background-color: #bce87b;
}

/* Resultattabel */
.repair-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: 1px solid #ccc;
}

.repair-table th,
.repair-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

/* Status badge */
.status-badge {
  font-weight: bold;
  font-size: 16px;
}

/* Fejlbesked hvis ingen resultat */
.not-found {
  color: red;
  margin-top: 15px;
  font-weight: bold;
}

/* Mobiljustering */
@media (max-width: 768px) {
  .repair-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .repair-image img {
    width: 100%;
    max-width: 400px;
  }

  .button-wrapper {
    text-align: center;
  }

  .button-wrapper button {
    width: 100%;
  }
}




</style>