body {
    font-family: sans-serif;
    margin: 20px;
}
  
  .stop-container {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .stop-title {
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 1.2em;
  }
  
  .stop-subtitle {
    margin-bottom: 8px;
    color: #666;
  }
  
  .timestamp {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
  }
  
  .countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .countdown progress {
    width: 200px;
    height: 15px;
  }
  
  .live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 4px;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .line-item {
    margin-bottom: 4px;
  }
  
  .line-name {
    font-weight: bold;
  }
  
.refresh-button {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .refresh-button {
        width: 100%;
    }
}