/* 共通の検索関連のスタイル */
.search-bar {
    margin-bottom: 20px;
}

.search-bar input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 300px;
}

.search-count {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* 書籍カテゴリタブのスタイル */
.book-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.category-tab {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.category-tab:hover {
    background-color: #e8e8e8;
}

.category-tab.active {
    background-color: #4a86e8;
    color: white;
    border-color: #4a86e8;
}

/* 説明文のスタイル */
.book-description {
    font-size: 14px;
    margin-bottom: 15px;
    color: #444;
}

/* 英語タイトルのスタイル */
.book-english-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

/* Amazon免責事項 */
.amazon-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 30px;
    text-align: center;
}