67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
/* General Body Styles */
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #212529;
|
|
}
|
|
|
|
/* Main container */
|
|
.container {
|
|
max-width: 1200px;
|
|
}
|
|
|
|
/* Header */
|
|
.header-title {
|
|
font-weight: 700;
|
|
color: #343a40;
|
|
}
|
|
|
|
/* Main card for content */
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
/* Table styles */
|
|
.table {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.table thead th {
|
|
border-bottom-width: 1px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.5px;
|
|
color: #495057;
|
|
}
|
|
|
|
.table tbody tr:hover {
|
|
background-color: #f1f3f5;
|
|
}
|
|
|
|
/* Modal styles */
|
|
.modal-header {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.modal-content {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
/* Toast notifications */
|
|
.toast {
|
|
border-radius: 0.375rem;
|
|
}
|
|
|
|
/* Button styles */
|
|
.btn-primary {
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|