.custom-table {
	width: 100%;
	border-collapse: collapse;
	font-family: Arial, sans-serif;
}

.custom-table th,
.custom-table td {
	border: 1px solid #dee2e6;
	padding: 12px 15px;
	text-align: center;
}

.custom-table th {
	background-color: #f8f9fa;
	font-weight: bold;
}

.custom-table tbody tr:nth-child(even) {
	background-color: #f2f2f2;
}

.custom-table tbody tr:hover {
	background-color: #ffe5b4; /* light orange hover */
}

.custom-table td.highlight {
	background-color: #ff7f00;
	color: #fff;
	font-weight: bold;
}

/* ✅ Make the table horizontally scrollable on small screens */
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Optional: Prevent text breaking */
.custom-table th,
.custom-table td {
	white-space: nowrap;
}

/* Overlay background */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.811);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Popup box */
.cookie-box {
	background: #fff;
	border-radius: 10px;
	width: 320px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	text-align: left;
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Close icon */
.cookie-box .close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
}

.cookie-box h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.cookie-box p {
	font-size: 14px;
	color: #555;
	margin: 10px 0 20px;
}
