File size: 1,327 Bytes
c43d2a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
:body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #2c3e50;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

main {
    padding: 2rem;
}

.section {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin: 0.5rem;
    cursor: pointer;
    background: #2980b9;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.2s;
}

button:hover {
    background: #3498db;
}

.book-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.book-details img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.book-info {
    max-width: 600px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
}

th {
    background: #ecf0f1;
}

.shop-link {
    color: #2980b9;
    text-decoration: none;
}

.shop-link:hover {
    text-decoration: underline;
}

#recommendations-list p {
    background: #ecf0f1;
    padding: 0.5rem;
    border-radius: 5px;
}