.home-section {
    margin-bottom: 2rem;
}

.book-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

.book-item:hover {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.book-item-cover {
    flex-shrink: 0;
    width: 80px;
}

.book-item-cover img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.25rem;
}

.book-item-cover-placeholder {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.book-item-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
}

.book-item-content {
    flex-grow: 1;
    min-width: 0; /* Pour le text-truncate */
}

.book-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.book-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 120px;
}

@media (max-width: 768px) {
    .book-item {
        flex-direction: column;
    }
    
    .book-item-cover {
        width: 100%;
    }
    
    .book-item-actions {
        width: 100%;
    }
}