.date-wrapper {
	position: relative;
	display: inline-block;
}

.date-input {
	padding: 8px 12px;
	border: 1px solid #CBD3DE;
	border-radius: 4px;
	cursor: pointer;
	color: transparent;
}

.date-display {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #000;
}

.date-input::placeholder {
	color: #999;
}

.has-value .date-input::placeholder {
	color: transparent;
}

/* 이전 스타일은 동일하게 유지 */
.month-picker {
	display: none;
	position: absolute;
	width: 300px;
	padding: 20px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	left: 0;
	top: 100%;
	margin-top: 5px;
	z-index: 1000;
}

.year-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.year-header button {
	border: none;
	background: none;
	font-size: 20px;
	cursor: pointer;
	padding: 5px 10px;
}

.year-display {
	font-size: 18px;
	font-weight: bold;
}

.months-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.month-btn {
	padding: 15px;
	border: none;
	background: white;
	cursor: pointer;
	border-radius: 4px;
	text-align: center;
}

.month-btn:hover {
	background: #f5f5f5;
}

.month-btn.selected {
	background: #007bff;
	color: white;
}
