.reading-toolbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 10px;
  background: white;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
  .reading-toolbar button {
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid #eee;
    background: #fff;
    font-family: "Cabin", sans-serif;
    font-size: 13px;
    border-radius: 2px;
    transition: 0.2s; }
    .reading-toolbar button:hover {
      background: #f9f9f9;
      border-color: #ccc; }

.container {
  transition: all 0.3s ease;
  font-family: "Noto Serif", serif;
  color: #3d3e40; }
  .container * {
    font-family: inherit;
    color: inherit;
    line-height: inherit; }
