49 lines
893 B
CSS
49 lines
893 B
CSS
/* General Body Styles */
|
|
body {
|
|
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #212529;
|
|
}
|
|
|
|
/* Header Styles */
|
|
.header-gradient {
|
|
background: linear-gradient(to right, #0B5ED7, #0D6EFD);
|
|
color: white;
|
|
}
|
|
|
|
.header-gradient .navbar-brand {
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Main container */
|
|
.main-container {
|
|
padding-top: 2rem;
|
|
padding-bottom: 2rem;
|
|
}
|
|
|
|
/* Card styles for dashboard elements */
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Table styles */
|
|
.table {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.table thead th {
|
|
font-weight: 600;
|
|
border-bottom-width: 2px;
|
|
}
|
|
|
|
/* Action buttons in table */
|
|
.btn-action {
|
|
padding: 0.25rem 0.5rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* Toast notifications */
|
|
.toast-container {
|
|
z-index: 1090;
|
|
} |