36884-vm/assets/css/style.css
Flatlogic Bot b4ffcec973 feat: Implement engineer and contract management
- Add Field Engineer Management feature, allowing creation, and assignment of engineers to service requests.

- Add Service Contract/AMC Management feature, allowing creation of contracts and linking them to service requests.

- Update admin panel to manage engineers and contracts.

- Update service request form to include contract selection.
2025-12-12 09:47:39 +00:00

55 lines
1.1 KiB
CSS

/* Custom Styles for Water Purifier Service CRM */
:root {
--primary-color: #20c997; /* Teal */
--secondary-color: #343a40; /* Dark Grey */
--light-grey: #f8f9fa;
--white: #ffffff;
}
body {
font-family: 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif';
}
.navbar-brand i {
color: var(--primary-color);
}
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
}
.btn-primary:hover {
background-color: #1aa07e;
border-color: #1aa07e;
}
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
}
.hero-section {
background: var(--light-grey);
padding: 4rem 0;
text-align: center;
border-radius: .5rem;
}
.hero-section h1 {
font-weight: 700;
color: var(--secondary-color);
}
.hero-section .lead {
max-width: 600px;
margin: 1.5rem auto;
}
.card {
border: 1px solid #dee2e6;
border-radius: .5rem;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}