@charset "utf-8";
/* CSS Document - Modernized */

.ds_box {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	position: absolute;
	z-index: 32767;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 8px;
}

.ds_tbl {
	background-color: #ffffff;
	border-collapse: separate;
	border-spacing: 2px;
}

.ds_head {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: #ffffff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	padding: 10px 0;
	border-radius: 6px 6px 0 0;
}

.ds_subhead {
	background-color: #f8fafc;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	font-family: inherit;
	width: 28px;
	padding: 6px 0;
	text-transform: uppercase;
}

.ds_cell {
	background-color: #ffffff;
	color: #334155;
	font-size: 13px;
	text-align: center;
	font-family: inherit;
	padding: 8px;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.ds_cell:hover {
	background-color: #3b82f6;
	color: #ffffff;
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
	transform: scale(1.05);
}