/* Jednoduché ukážkové štýly pre "progress bar" */

/* Jednoduché demo CSS pre "progress bar" */
/* Button */
.woo-order-tracking-form p button:hover{
  cursor: pointer;
}

.wot-step-icon {
  display: inline-block;
  width: 40px; 
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  z-index: 1;
  position: relative;
  margin-bottom: 5px;
}

.wot-step-title {
  font-weight: bold;
  color: #333;
  margin-top: 5px;
}

/* Stav "active" */
.wot-step-active .wot-step-icon {
  background-color: #ffd700; /* zlatá */
  color: #000;
}

/* Stav "done" */
.wot-step-done .wot-step-icon {
  background-color: #3fbf3f; /* zelená */
}

/* Stav "pending" */
.wot-step-pending .wot-step-icon {
  background-color: #ccc;
}














/* Container for the entire tracking block */
.wot-shipping-progress {
  margin: 40px auto;
  padding: 30px;
  max-width: 700px;
  background-color: #ffffff;
  text-align: center;            /* Center all text and elements */
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  font-family: inherit;         /* Inherit the theme’s font */
}

/* Heading style */
.wot-shipping-progress h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #333;
}

/* UL for shipping events */
.wot-shipping-progress {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: left;             /* Make the timeline text left-aligned */
  display: inline-block;        /* So it doesn’t stretch the full width */
  width: 100%;
  max-width: 500px;
}

/* Individual events */
.wot-shipping-progress li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Remove the final border */
.wot-shipping-progress li:last-child {
  border-bottom: none;
}

/* The "Sledovať zásielku" link (big button) */
.chameleoon-tracking-container .tracking-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #0073aa;          /* WP admin blue; adjust if desired */
  color: #fff !important;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

/* Hover state for the link */
.chameleoon-tracking-container .tracking-link:hover {
  background: #005b8f;          /* Darker blue on hover */
}

/* 
 * If you want to style the order detail box as well, you can do so here:
 */
.wot-order-details {
  margin: 40px auto;
  padding: 20px;
  max-width: 700px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 6px;
  text-align: left;
}
.wot-order-details h3 {
  margin-top: 0;
  font-size: 1.3em;
}





.storno-description,
.refund-description {
    text-align: center;
    margin: 20px 0;
}

.storno-description ul,
.refund-description ul {
    display: inline-block;
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
}

.storno-description li strong,
.refund-description li strong {
    display: block;
    margin-bottom: 5px;
}
