#filterLine {
    background-color:aliceblue;
    border:1px solid darkblue;
    padding:10px;
    margin-top:10px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    color:darkblue;
}

.filter-button {
    padding: 4px 10px;
    border: 1px solid #999;
    border-radius: 5px;
    background: #eee;
    cursor: pointer;
}
.filter-button.selected {
    background: navy;
    color: white;
    font-weight: bold;
}

/* ページャー全体 */
.pager {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 6px;
}

/* ページボタン */
.page-btn {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  margin-right: 5px;
}

/* hover時 */
.page-btn:hover {
  background: #eee;
  border-color: #888;
}

/* 現在のページ */
.page-btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



.tweet_div {
    border-radius: 5px;
    background-color: white;
    padding: 9px;
    max-width: 450px;
    width: 95%;
    margin-bottom: 8px;
}

.tweet_text {
    margin-top: 8px;
    font-size: 0.7em;
}

.tweet_name {
    font-size: 0.7em;
}

.tweet_date {
    display: block;
    text-align: right;
}

.tweet_id, .tweet_date {
    font-size: 0.6em;
}

.tweet_text img {
    width: 0.7em;
    height: 0.7em;
}