/* Custom styles for NMMC Cleanliness App */

/* Body styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar styles */
.navbar-brand {
    font-weight: 600;
}

/* Card styles */
.card {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem;
}

.card-title {
    margin-bottom: 0;
    font-weight: 600;
}

/* Form styles */
.form-label {
    font-weight: 500;
}

.form-control, .form-select {
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Button styles */
.btn {
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Table styles */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Camera container */
.camera-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.375rem;
}

#camera-preview, #camera-output {
    width: 100%;
    border-radius: 0.375rem;
}

/* Image preview */
#image-preview {
    max-height: 200px;
    border-radius: 0.375rem;
}

/* Map container */
#map {
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Status badges */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

/* Dashboard cards */
.card .card-body h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}
