36 lines
433 B
CSS
36 lines
433 B
CSS
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0d6efd;
|
|
border-color: #0d6efd;
|
|
}
|
|
|
|
.btn-danger {
|
|
background-color: #dc3545;
|
|
border-color: #dc3545;
|
|
}
|
|
|
|
.table {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.table th {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.toast-header {
|
|
background-color: #0d6efd;
|
|
color: white;
|
|
}
|
|
|
|
.toast-body {
|
|
background-color: white;
|
|
}
|