27 lines
565 B
CSS
27 lines
565 B
CSS
/* Import Google Font */
|
|
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
|
|
|
|
body {
|
|
direction: rtl; /* Right-to-left layout */
|
|
font-family: 'Tajawal', sans-serif; /* Arabic-friendly font */
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.main-content {
|
|
min-height: calc(100vh - 56px); /* Full height minus navbar */
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.table {
|
|
vertical-align: middle;
|
|
}
|