.kmm-wrapper {
  margin-bottom: 20px;
  display: block;
  text-align: center;
  /* Προαιρετικά */
}

.kmm-container {
  display: none;
  /* ή block ανάλογα με το πώς θες να το εμφανίζεις */
  position: relative;

  background-color: #fef9e7;
  /* Απαλό κιτρινωπό φόντο */

  /* Διακεκομμένο περίγραμμα σε 3 πλευρές (κάτω, δεξιά, αριστερά).
     Αντί για border: dashed σε όλες, βάζουμε: */
  border-top: none;
  border-left: 2px dashed #ffa800;
  border-right: 2px dashed #ffa800;
  border-bottom: 2px dashed #ffa800;

  border-radius: 0 0 5px 5px;
  /* Λίγο στρογγύλεμα στις κάτω γωνίες */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

  padding: 15px 25px 20px;
  font-family: "Trebuchet MS", sans-serif;
  color: #4b2900;
}

/* Λεπτή, συμπαγής μπάρα στην κορυφή */
.kmm-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #ffa800;
  /* Πορτοκαλί του brand */
  border-radius: 5px 5px 0 0;

  position: absolute;
  top: 0;
  left: 0;
}

/* Έμφαση σε λέξεις-κλειδιά */
.kmm-container strong {
  color: #b53300;
  font-weight: 700;
  font-size: 1.1em;
}

/* Αντίστροφη μέτρηση (π.χ. "14 ώρες...") */
.kmm-container .countdown {
  font-weight: 700;
  color: #b53300;
}