/**
 * @author parkyk
 * @since 2026-04-02
 * @description InputCalendar 스타일
 */
input[data-calendar] {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20stroke%3D%22%23888%22%20stroke-width%3D%221.2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%222%22%20y%3D%223%22%20width%3D%2212%22%20height%3D%2211%22%20rx%3D%221.5%22%2F%3E%3Cline%20x1%3D%222%22%20y1%3D%226.5%22%20x2%3D%2214%22%20y2%3D%226.5%22%2F%3E%3Cline%20x1%3D%225%22%20y1%3D%221.5%22%20x2%3D%225%22%20y2%3D%224%22%2F%3E%3Cline%20x1%3D%2211%22%20y1%3D%221.5%22%20x2%3D%2211%22%20y2%3D%224%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right .5rem center;
	background-size: 1rem;
	padding-right: 2rem !important;
	cursor: pointer;
}
._cal-panel {
	display: none;
	position: fixed;
	z-index: 9999;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: .375rem;
	box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .15);
	padding: .5rem;
	min-width: 16rem;
	font-size: 1rem;
	user-select: none;
}
._cal-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: .375rem;
}
._cal-nav {
	border: none;
	background: none;
	cursor: pointer;
	padding: .25rem .5rem;
	border-radius: .25rem;
	font-size: 1rem;
	color: #333;
}
._cal-nav:hover { background: #f0f0f0; }
._cal-title {
	border: none;
	background: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	padding: .25rem .5rem;
	border-radius: .25rem;
	color: #333;
}
._cal-title:hover { background: #f0f0f0; }
._cal-tbl {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}
._cal-tbl th { padding: .25rem; font-weight: 500; color: #666; font-size: .875rem; }
._cal-tbl td { padding: 0; }
._cal-tbl td button {
	width: 100%;
	border: none;
	background: none;
	cursor: pointer;
	padding: .375rem;
	border-radius: .25rem;
	font-size: .9375rem;
	color: #333;
}
._cal-tbl td button:hover { background: #e8f0fe; }
._cal-sun { color: #e74c3c !important; }
._cal-sat { color: #3498db !important; }
._cal-today { font-weight: 700; outline: 1px solid #ccc; outline-offset: -1px; border-radius: .25rem; }
._cal-sel { background: #0d6efd !important; color: #fff !important; border-radius: .25rem; }
._cal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: .25rem;
}
._cal-grid button {
	border: none;
	background: none;
	cursor: pointer;
	padding: .5rem .25rem;
	border-radius: .25rem;
	font-size: .9375rem;
	color: #333;
}
._cal-grid button:hover { background: #e8f0fe; }
._cal-grid ._cal-sel { background: #0d6efd !important; color: #fff !important; }
