-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetailsstyle.css
More file actions
75 lines (63 loc) · 1.08 KB
/
Copy pathdetailsstyle.css
File metadata and controls
75 lines (63 loc) · 1.08 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #f5f5f5;
padding: 40px 20px;
}
.bookings-container {
max-width: 1000px;
margin: auto;
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.bookings-container h2 {
margin-bottom: 10px;
color: #333;
text-align: center;
}
.bookings-container p {
margin-bottom: 25px;
color: #666;
text-align: center;
}
.bookings-table {
width: 100%;
border-collapse: collapse;
text-align: center;
}
.bookings-table thead {
background: #f8c146;
color: #1a1a1a;
}
.bookings-table th, .bookings-table td {
padding: 14px;
border: 1px solid #ddd;
font-size: 14px;
}
.bookings-table tbody tr:nth-child(even) {
background: #fafafa;
}
.status {
padding: 6px 12px;
border-radius: 6px;
font-weight: bold;
font-size: 13px;
}
.status.confirmed {
background: #4caf50;
color: #fff;
}
.status.pending {
background: #ff9800;
color: #fff;
}
.status.cancelled {
background: #f44336;
color: #fff;
}