-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle4.css
93 lines (77 loc) · 1.54 KB
/
style4.css
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
/* Book appointment of patient panel(adminpanel.php) */
.hcontent {
max-width: 400px;
margin: 0 auto;
}
/* Form header */
.hcontent h4 {
text-align: center;
margin-bottom: 20px;
border-bottom: 1px solid black;
}
/* Form inputs */
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-control {
width: 100%;
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Select dropdowns */
select.form-control {
height: 38px;
}
/* Submit button */
/* .btn {
text-align: center;
} */
/* Appointment history table */
.app-table {
width: 100%;
border-collapse: collapse;
}
.app-table th,
.app-table td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.app-table th {
background-color: #f2f2f2;
font-weight: bold;
}
.app-table tr:hover {
background-color: #f5f5f5;
}
.btn-danger {
background-color: #dc3545;
color: #fff;
border: none;
padding: 6px 12px;
border-radius: 4px;
cursor: pointer;
}
.btn-danger:hover {
background-color: #c82333;
}
/* doctorpannel navbar ko search btn */
.doc-nav {
display: flex;
align-items: center;
justify-content: space-between; /* Adds space between "welcome" and form */
}
.psearch {
display: flex;
align-items: center;
}
.email-field {
margin-right: 10px; /* Adjust the spacing between the search box and button as needed */
}