.header{
	background-image: url("../images/header-bg.jpg");
}
#kt_content_container.container-xxl{
	max-width: 98% !important;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th {
	background-color: #f8fafc;
	padding: 15px 20px;
	text-align: left;
	font-weight: 600;
	color: #374151;
	border-bottom: 2px solid #e5e7eb;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

td {
	padding: 15px 20px;
	border-bottom: 1px solid #f3f4f6;
}

tbody tr {
	cursor: pointer;
	transition: all 0.2s ease;
}

tbody tr:hover {
	background-color: #f8fafc;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status.urgent {
	background-color: #fee2e2;
	color: #dc2626;
}

.status.high {
	background-color: #fef3c7;
	color: #d97706;
}

.status.medium {
	background-color: #dbeafe;
	color: #2563eb;
}

.time {
	color: #6b7280;
	font-size: 13px;
}

.location {
	color: #374151;
	font-weight: 500;
}

.user {
	display: flex;
	align-items: center;
	gap: 10px;
}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 12px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(5px);
}

.modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 0;
	border-radius: 12px;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-header {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	color: white;
	padding: 20px 30px;
	position: relative;
}

.close {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.close:hover {
	background-color: rgba(255,255,255,0.2);
}

.modal-body {
	padding: 30px;
}

.map-container {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, #e5f3ff 0%, #b3e0ff 100%);
	border-radius: 8px;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
	border: 2px solid #e5e7eb;
}

.map-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #6b7280;
}

.map-marker {
	position: absolute;
	top: 40%;
	left: 60%;
	width: 20px;
	height: 20px;
	background-color: #dc2626;
	border-radius: 50%;
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.emergency-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.emergency-btn {
	padding: 15px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.fire-dept {
	background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
	color: white;
}

.hospital {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
}

.police {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: white;
}

.emergency-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.notification-details {
	background-color: #f8fafc;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.detail-label {
	font-weight: 600;
	color: #374151;
}

.detail-value {
	color: #6b7280;
}

.success-message {
	display: none;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	margin-top: 20px;
	text-align: center;
	font-weight: 600;
}