@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

* {
  font-family: "Hind", serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}

body {
  margin: 0;
  padding: 20px;
  background: #f5f5f7;
  text-align: center;
}

#content, #pagination, #jump-container {
    display: none;
}
  
  /* Hide until data loads */
  .doha-card {
    max-width: 500px;
    background: #fff;
    padding: 20px;
    margin: 15px auto 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  .copy-btn {
    margin-top: 5px;
    background: #007bff;
    color: white;
    border-radius: 2px;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    line-height: 1.5;
  }
  
  .copy-btn:hover {
    background: #0056b3;
  }
  
  #pagination {
    margin-bottom: 10px;
  }
  
  .page-btn {
    padding: 5px 15px;
    margin: 2px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
  }
  
  .page-btn.active {
    background: #007bff;
    color: white;
  }
  
  /* Jump to Page */
  #jump-input {
    width: 60px;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    outline-color: black;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  #jump-btn {
    padding: 8px;
    margin-left: 5px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 2px;
  }
  
  #jump-btn:hover {
    background: #218838;
  }
  
  /* Copy Alert */
  #copy-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    line-height: 1.5;
  }
  
  #copy-alert.show {
    display: block;
    opacity: 1;
  }
  
  .search-box {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 16px auto 16px;
  }
  
  .search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
  }
  
  .search-box input::placeholder {
    color: #aaa;
  }