-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_style_6.css
More file actions
107 lines (54 loc) · 1.29 KB
/
inline_style_6.css
File metadata and controls
107 lines (54 loc) · 1.29 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
.state-card {
height: 85vh; /* Full viewport height */
width: 100%; /* Full width */
margin: 0;
border-radius: 0; /* Remove rounded corners */
}
.state-card-body {
padding: 20px;
overflow: auto; /* Enable scrolling inside the card */
}
.state-table {
width: 100%;
border-collapse: collapse;
background-color: #fff;
}
.state-table th, .state-table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.state-table th {
background-color: #4CAF50;
color: white;
}
.state-table tr:hover {
background-color: #f5f5f5;
}
.search-container {
margin-bottom: 20px;
}
#searchInput {
width: 100%;
max-width: 400px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
#searchButton {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#searchButton:hover {
background-color: #45a049;
}
.alert-warning {
margin-top: 10px;
}
.alert-warning strong {
font-weight: bold;
}