#browsing-history {
    max-width: 600px;
}

.bh-entry {
    display: flex;
    align-items: center; /* 中央揃え！ */
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.bh-thumbnail img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    margin-right: 16px; /* ← スキマを広く */
    border-radius: 4px;
    overflow-x: hidden;
}

.bh-title {
    flex-grow: 1;
    font-size: 16px;
    color: #0073aa;
    text-decoration: none;
    margin-left: 20px; /* ← スキマを広く */
}

.bh-remove {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #888;
    margin-left: 8px;
}

.bh-remove:hover {
    color: red;
}
