File size: 2,641 Bytes
ec47790 | 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f7fb;
}
a {
text-decoration: none;
}
.auth-page {
min-height: 100vh;
background: linear-gradient(135deg, #0d6efd, #6ea8fe);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.auth-card {
width: 100%;
max-width: 430px;
background: white;
border-radius: 24px;
padding: 35px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.dashboard-layout {
display: flex;
min-height: 100vh;
}
.sidebar {
width: 260px;
background: #0d1b2a;
color: white;
padding: 28px 22px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.sidebar-logo {
font-size: 28px;
font-weight: bold;
margin-bottom: 8px;
}
.sidebar-role {
color: #adb5bd;
margin-bottom: 30px;
}
.sidebar-links {
display: flex;
flex-direction: column;
gap: 12px;
}
.sidebar-links a {
color: white;
padding: 12px 16px;
border-radius: 14px;
transition: 0.2s ease;
background: rgba(255, 255, 255, 0.05);
}
.sidebar-links a:hover {
background: rgba(255, 255, 255, 0.12);
}
.sidebar-footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.12);
}
.main-content {
flex: 1;
padding: 28px;
background: #f8f9fc;
}
.navbar-premium {
background: white;
border-radius: 20px;
padding: 22px 24px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.form-box,
.result-box,
.dashboard-card,
.table-premium,
.doctor-card {
background: white;
border-radius: 22px;
padding: 24px;
box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.btn-premium {
background: #0d6efd;
color: white;
border: none;
border-radius: 14px;
padding: 11px 22px;
font-weight: 600;
}
.btn-premium:hover {
background: #0b5ed7;
color: white;
}
.search-box,
.form-control {
border-radius: 14px !important;
padding: 11px 14px !important;
}
.doctor-card img {
width: 100%;
border-radius: 18px;
object-fit: cover;
}
.action-btn {
border: none;
padding: 8px 14px;
border-radius: 10px;
margin-right: 8px;
cursor: pointer;
}
.btn-edit {
background: #ffc107;
color: black;
}
.btn-delete {
background: #dc3545;
color: white;
}
.btn-view {
background: #198754;
color: white;
}
.result-box .progress {
background: #e9ecef;
}
@media (max-width: 992px) {
.dashboard-layout {
flex-direction: column;
}
.sidebar {
width: 100%;
}
.main-content {
padding: 18px;
}
} |