File size: 1,070 Bytes
8836d40
 
29a34fb
8836d40
29a34fb
8836d40
29a34fb
 
8836d40
 
 
 
29a34fb
8836d40
 
29a34fb
8836d40
29a34fb
 
8836d40
 
 
29a34fb
 
84e61a5
4c41e32
8836d40
 
 
 
 
 
 
 
29a34fb
 
4c41e32
8836d40
 
 
 
29a34fb
85dbe98
4c41e32
8836d40
 
 
 
4c41e32
8836d40
 
 
85dbe98
 
4c41e32
8836d40
85dbe98
 
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
/* Styling for the vertical food list */
#food-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

button {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Modal styling */
.modal-content {
    width: 400px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.modal-content img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.modal-content h3 {
    margin-top: 20px;
    font-size: 24px;
}

.modal-content table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

.modal-content table td {
    padding: 10px;
    border: 1px solid #ddd;
}