body {
	font-family: Arial;
}


.table-hover {
	border-collapse: collapse;
	overflow:scroll;
	tbody tr:hover {background-color: #ff770051;}
}
.table-nohover {
	border-collapse: collapse;
	overflow:scroll;
	tr:hover { 
		background-color: unset !important;
		color: unset !important;
	}
}

.table-withborder {
	border: 1px solid black;
	border-collapse: collapse;
	tr:hover { 
		background-color: unset !important;
		color: unset !important;
	}
}
.faq-q { border-left: 4px solid #0033A0; }   /* Royal Blue */
.faq-item.open .faq-q { border-left-color: #FF6F00; } /* Sunrise Orange */
.faq-q:hover { background: #f5f8ff; }

.nobottomborder {
	padding: 8px;
	text-align: left;
	border-bottom: 1px hidden #DDD;
  }

table {
	font-size: 12px;
}
th {
  padding: 8px;
  text-align: left;
}

.th-bottomline {
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #DDD;
  }

td {
	padding: 8px;
}
.td-bottomline {
	padding: 8px;
	border-bottom: 1px solid #DDD; 	
}
.td-smallheight {
	height: 8px;
}

.td-smallheight tr {
	overflow: hidden;
}

/* ---- Empty States ---- */
.empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 56px 24px;
	text-align: center;
}

.empty-state-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	color: #cbd5e0;
}

.empty-state-icon svg {
	width: 100%;
	height: 100%;
}

.empty-state-headline {
	font-size: 1.05rem;
	font-weight: 700;
	color: #4a5568;
	margin: 0 0 8px;
}

.empty-state-subtext {
	font-size: 0.875rem;
	color: #a0aec0;
	margin: 0 0 24px;
	max-width: 300px;
	line-height: 1.5;
}

.empty-state-cta {
	display: inline-block;
	padding: 10px 24px;
	background: #4299e1;
	color: #fff;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}

.empty-state-cta:hover {
	background: #3182ce;
}