/* Books Publishing Plugin Styles */
.book-content {
    line-height: 1.8;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

.book-content p {
    margin-bottom: 1.5em;
}

.book-meta {
    margin: 1em 0;
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

.book-date,
.book-updated {
    display: block;
    margin-bottom: 0.5em;
}

.language-badge {
    background: #0073aa;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Dashboard Widget Styles */
.book-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.book-stats .stat {
    background: #f6f7f7;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    border-left: 4px solid #0073aa;
}

.book-stats .stat strong {
    display: block;
    font-size: 2em;
    color: #0073aa;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-stats {
        grid-template-columns: 1fr;
    }
    
    .book-content {
        font-size: 1em;
        padding: 0 15px;
    }
    
    .book-meta {
        font-size: 0.85em;
    }
}

/* Admin Column Styles */
.column-book_author,
.column-book_category {
    width: 15%;
}

.column-book_language {
    width: 10%;
    text-align: center;
}

/* Archive Page Improvements */
.post-type-archive-book .page-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-type-archive-book .book-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.post-type-archive-book .book-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Schema Rich Results Styling */
.book-details {
    margin: 2em 0;
    padding: 1.5em;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

/* Chapter List */
.book-chapters {
    background: #f8f9fa;
    padding: 1.5em;
    border-radius: 8px;
    margin: 1.5em 0;
    border-left: 4px solid #28a745;
}

.book-chapters h4 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5em;
}

.book-chapters ul {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
}

.book-chapters li {
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
}

.book-chapters li:before {
    content: "•";
    color: #0073aa;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.book-chapters li:last-child {
    border-bottom: none;
}

/* Print Styles for Books */
@media print {
    .book-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .book-meta {
        font-size: 10pt;
    }
    
    .book-chapters,
    .book-details {
        break-inside: avoid;
    }
}