/* Novel Scout - Page-Specific Styles */
/* Book detail, author profile, grid layouts */

/* Book Detail Page */
.book-cover-large {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    background: var(--light-color);
    border-radius: 0 !important;
    box-shadow: none !important;
}

.book-cover-section {
    background: var(--light-color);
    border-radius: 0;
    padding: 1rem;
}

.book-cover-placeholder {
    height: 400px;
    width: 100%;
}

.description-text {
    font-size: 1.0rem;
    line-height: 1.6;
    color: #495057;
}

.store-listing-compact {
    transition: all 0.2s ease;
}

.store-listing-compact:hover {
    transform: translateY(-1px);
}

.store-listing-compact .border {
    border-color: #dee2e6 !important;
    transition: all 0.2s ease;
}

.store-listing-compact:hover .border {
    border-color: var(--novel-scout-green) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(11, 83, 81, 0.15);
}

.store-listing-compact .fw-medium {
    color: var(--dark-color);
}

.detail-item {
    padding: 0.25rem 0;
}

/* Author Profile */
.author-profile .card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.author-bio {
    min-height: 60px;
}

.author-image-placeholder .placeholder-box {
    width: 120px;
    height: 120px;
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    margin: 0 auto;
}

.author-image-placeholder small {
    font-size: 0.75rem;
}

/* Custom Grid Layouts */
.col-5-books {
    flex: 0 0 25%;
    max-width: 25%;
}
