:root {
    /* Primary Color - 深いネイビー（知的・落ち着いた） */
    --primary-color: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    
    /* Secondary Color - 温かみのあるゴールド（文学的・高級感） */
    --secondary-color: #d4af37;
    --secondary-light: #e8c55c;
    --secondary-dark: #b8941f;
    
    /* Tertiary Color - 深いワインレッド（アクセント） */
    --tertiary-color: #8e44ad;
    --tertiary-light: #9b59b6;
    --tertiary-dark: #732d91;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Status Colors */
    --unread-color: #e74c3c;
    --reading-color: #f39c12;
    --completed-color: #27ae60;
    
    /* Background */
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-pattern: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                 radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                 radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    --card-bg: #ffffff;
    --hover-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient), var(--bg-pattern);
    background-size: 100% 100%, 200px 200px;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}


.stats {
    padding: 20px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    border-bottom: 1px solid var(--gray);
}

.stats-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.filter-label {
    font-size: 0.85em;
    color: var(--dark-gray);
    font-weight: 600;
}

.filter-note {
    font-size: 0.75em;
    color: var(--gray);
    margin-top: 5px;
    text-align: center;
    font-style: italic;
}

.filter-buttons {
    display: flex;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray);
}

.filter-btn {
    flex: 1;
    padding: 6px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    border-radius: 18px;
    transition: all 0.3s ease;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.5);
}

.filter-btn.active {
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.stats-info {
    margin: 15px 0 10px 0;
    text-align: center;
}

.stats-condition {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #dee2e6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gray);
    transition: transform 0.3s ease;
}

.share-btn {
    background: #000000;
    border: 1px solid #333;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.share-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.share-btn .stat-label {
    font-size: 0.9em;
    font-weight: 600;
    color: white;
}

.stat-sublabel {
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray);
    margin-top: 5px;
}

.book-list {
    padding: 20px;
}

.book-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.book-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.book-item.read {
    background: #d4edda;
    border-color: #c3e6cb;
}

/* 芥川賞のカード背景（うっすら紫） */
.book-item.akutagawa {
    background: rgba(139, 69, 173, 0.03);
    border-color: rgba(139, 69, 173, 0.1);
}

/* 直木賞のカード背景（うっすら黄色） */
.book-item.naoki {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.1);
}

/* 既読の場合は元の緑色を優先 */
.book-item.read.akutagawa {
    background: #d4edda;
    border-color: #c3e6cb;
}

.book-item.read.naoki {
    background: #d4edda;
    border-color: #c3e6cb;
}

.book-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.book-info {
    flex: 1;
}

.book-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.book-author {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.book-meta {
    color: #95a5a6;
    font-size: 0.9em;
}

.book-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reading-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

.status-buttons {
    display: flex;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid var(--gray);
}

.status-btn {
    flex: 1;
    padding: 6px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    border-radius: 18px;
    transition: all 0.3s ease;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.status-btn:hover {
    background: rgba(255,255,255,0.5);
}

.status-btn.active {
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.status-btn.unread.active {
    background: linear-gradient(135deg, var(--unread-color), #c0392b);
}

.status-btn.reading.active {
    background: linear-gradient(135deg, var(--reading-color), #e67e22);
}

.status-btn.completed.active {
    background: linear-gradient(135deg, var(--completed-color), #229954);
}


.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.loading p {
    color: #6c757d;
    font-weight: 600;
}


.no-award-item {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    text-align: center;
    color: #6c757d;
}

.no-award-item .award-info {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.no-award-item .award-note {
    font-size: 0.9em;
    font-style: italic;
}

.kindle-link {
    background: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-light));
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid var(--tertiary-dark);
}

.kindle-link:hover {
    background: linear-gradient(135deg, var(--tertiary-dark), var(--tertiary-color));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.memo-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.memo-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    resize: vertical;
}

.award-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 10px;
}

.akutagawa {
    background: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-light));
    color: var(--white);
}

.naoki {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--white);
}

.winner-card {
    position: relative;
    background: linear-gradient(135deg, #fff9e6 0%, #f8f5f0 100%);
    border-left: 4px solid #ffd700;
    overflow: hidden;
}

.candidate-card {
    position: relative;
    background: linear-gradient(135deg, #f0f8ff 0%, #f5f5f5 100%);
    border-left: 4px solid #4a90e2;
    overflow: hidden;
}

.round-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 12px 20px;
    margin: 20px 0 15px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.winner-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 700;
    margin-left: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b4513;
    border: 2px solid #ffd700;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.candidate-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    margin-left: 8px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    border: 1px solid #42a5f5;
    box-shadow: 0 1px 3px rgba(33, 150, 243, 0.2);
}

.controls {
    background: var(--light-gray);
    border-bottom: 1px solid var(--gray);
}

.data-controls-top {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(108, 117, 125, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-controls-section {
    display: flex;
    gap: 10px;
}

.info-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.info-text {
    font-size: 0.9em;
    color: var(--gray);
}

.info-text a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--tertiary-light);
    text-decoration: underline;
}

.warning-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 10px 0;
    font-size: 0.9em;
    color: #856404;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.warning-notice strong {
    color: #dc3545;
    font-weight: 600;
}

.warning-notice a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.warning-notice a:hover {
    text-decoration: underline;
}

/* Browser Storage Information Section */
.browser-storage-info {
    background: linear-gradient(135deg, #e8f4f8, #d4f1f9);
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 12px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-header {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-info-grid {
    display: grid;
    gap: 8px;
    font-size: 0.9em;
}

.browser-item {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    color: var(--dark-gray);
}

.browser-item.safari {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}

.backup-recommendation {
    padding: 10px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-left: 3px solid #28a745;
    border-radius: 4px;
    color: var(--dark-gray);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .browser-storage-info {
        padding: 12px 16px;
    }
    
    .info-header {
        font-size: 1em;
    }
    
    .browser-info-grid {
        font-size: 0.85em;
    }
}

.filters-section {
    padding: 15px 20px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-item label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.filter-item select,
.filter-item input {
    padding: 8px 12px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filter-item select:focus,
.filter-item input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.footer p {
    margin: 0;
    font-size: 0.9em;
}

.manual-update-bubble {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-left: 10px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}

.manual-update-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #ff6b6b;
    transform: translateY(-50%);
}

.manual-update-bubble:hover {
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
}

.btn-danger:hover {
    background: #dc3545;
    color: white;
}

.share-book-btn {
    background: #1d1d1d;
    color: white;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-book-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Share buttons styles */
.share-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.share-progress-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    min-width: 140px;
    justify-content: center;
}

.share-progress-btn.twitter {
    background: #000000;
}
.share-progress-btn.twitter:hover {
    background: #333333;
}


.share-progress-btn.bluesky {
    background: #0085ff;
}
.share-progress-btn.bluesky:hover {
    background: #006acc;
}

.share-progress-btn.download {
    background: #28a745;
}
.share-progress-btn.download:hover {
    background: #1e7e34;
}

.share-progress-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Book share dropdown styles */
.share-book-dropdown {
    position: relative;
    display: inline-block;
}

.share-book-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.share-book-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.share-book-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 150px;
    display: none;
    overflow: hidden;
}

.share-book-dropdown.open .share-book-options {
    display: block;
}

.share-book-options button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: white;
    color: #333;
    font-size: 0.85em;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.share-book-options button:last-child {
    border-bottom: none;
}

.share-book-options button:hover {
    background: #f8f9fa;
}

@media (max-width: 600px) {
    .share-buttons-group {
        flex-direction: column;
        width: 100%;
    }
    
    .share-progress-btn {
        width: 100%;
    }
    
    .share-book-options {
        right: auto;
        left: 0;
    }
}

/* ローディングカード用スタイル */
.loading-card {
    opacity: 0.7;
    pointer-events: none;
}

.loading-placeholder {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.loading-bar {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.loading-placeholder .loading-bar {
    margin: 0;
    height: 100%;
}

.book-title.loading-placeholder {
    height: 1.6em;
}

.book-author.loading-placeholder {
    height: 1.2em;
    width: 60%;
}

.book-meta.loading-placeholder {
    height: 1em;
    width: 80%;
}

.status-buttons .loading-bar {
    height: 32px;
    width: 150px;
}

.book-actions .loading-bar {
    height: 32px;
    width: 80px;
    display: inline-block;
    margin-right: 8px;
}

.memo-section .loading-bar {
    height: 60px;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* 円グラフスタイル */
.pie-chart-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pie-chart-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pie-chart {
    width: 80px;
    height: 80px;
}

.pie-background {
    stroke: #e9ecef;
}

.pie-progress {
    stroke: #27ae60;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s ease-in-out;
}

.pie-chart-text {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pie-chart-text .stat-number {
    font-size: 1.2em;
    margin: 0;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 0.9em;
    }
    
    .manual-update-bubble {
        font-size: 0.7em;
        padding: 4px 8px;
        margin-left: 5px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stats-filters {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .data-controls-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .info-section {
        flex-direction: column;
        gap: 5px;
    }

    .data-controls-section {
        align-self: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .share-progress-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .book-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .book-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .reading-status {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        width: 100%;
    }

    .status-buttons {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .status-btn {
        font-size: 10px;
        padding: 5px 8px;
        flex: 1;
    }
    
    .kindle-link {
        font-size: 0.8em;
        padding: 6px 12px;
        text-align: center;
    }
    
    .share-book-btn {
        font-size: 0.8em;
        padding: 6px 12px;
        text-align: center;
    }
    
    .book-title {
        font-size: 1.2em;
    }
    
    .book-author {
        font-size: 1em;
    }
    
    .book-meta {
        font-size: 0.8em;
    }

    .book-info {
        margin-bottom: 10px;
    }
}