.tricolor-bar {
	background: linear-gradient(to right, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808
		66%);
}

.card-glow {
	box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.1);
}

.stats-card {
	transition: all 0.3s ease;
}

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

.grievance-item {
	transition: all 0.3s ease;
}

.grievance-item:hover {
	background-color: #f8fafc;
}

.sidebar {
	transition: all 0.3s ease;
}

@media ( max-width : 768px) {
	.sidebar {
		transform: translateX(-100%);
	}
	.sidebar.active {
		transform: translateX(0);
	}
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.step {
	display: flex;
	align-items: center;
	position: relative;
	flex: 1;
	max-width: 200px;
}

.step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background-color: #e5e7eb;
	z-index: 1;
}

.step.active:not(:last-child)::after {
	background-color: #1E3A8A;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #e5e7eb;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	z-index: 2;
	position: relative;
}

.step.active .step-number {
	background-color: #1E3A8A;
	color: white;
}

.step.completed .step-number {
	background-color: #059669;
	color: white;
}

.step-label {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 8px;
	font-size: 0.75rem;
	color: #6b7280;
	white-space: nowrap;
}

.step.active .step-label {
	color: #1E3A8A;
	font-weight: 500;
}

#camera-preview {
	display: none;
	max-width: 100%;
	margin-top: 10px;
}

#capture-btn {
	display: none;
	margin-top: 10px;
}

.preview-item {
	position: relative;
	display: inline-block;
}

.remove-btn {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ef4444;
	color: white;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 12px;
	border: 2px solid white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.remove-btn:hover {
	background: #dc2626;
}

.location-tag {
	background: #1E3A8A;
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 10px;
	margin-top: 4px;
}

.preview-image {
	width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: contain;
	border-radius: 8px;
}

.file-preview-container {
	background: #f8fafc;
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/* Location Modal Styles */
#location-modal {
	backdrop-filter: blur(4px);
}