/* Main Styles for Insectram */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Customer Portal Styles */
.customer-header {
    background-color: #007bff;
    color: white;
}

/* Technician Portal Styles */
.technician-header {
    background-color: #28a745;
    color: white;
}

/* Admin Portal Styles */
.admin-header {
    background-color: #dc3545;
    color: white;
}

/* Form Styles */
.form-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dashboard Styles */
.dashboard-card {
    border-left: 4px solid;
    margin-bottom: 20px;
}

.dashboard-card.pending {
    border-left-color: #ffc107;
}

.dashboard-card.completed {
    border-left-color: #28a745;
}

.dashboard-card.urgent {
    border-left-color: #dc3545;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #007bff;
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: -23px;
    top: 15px;
    width: 2px;
    height: calc(100% - 15px);
    background-color: #dee2e6;
}

.timeline-item:last-child:after {
    display: none;
}
