body {
	margin: 0;
	padding: 20px;
	background-color: #f5f5f5;
}
.outofcalendar-container {
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin: 20px auto;
	max-width: 1280px;
}
.calendar-container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 8px;
	overflow: hidden;
}
.calendar-header {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: linear-gradient(to bottom, var(--theme1) 0%, var(--theme2) 100%);
	color: white;
}
.month-year {
	font-size: 24px;
	font-weight: bold;
}
.nav-buttons button {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	padding: 5px 15px;
	border-radius: 4px;
}
.nav-buttons button:hover {
	background: rgba(255,255,255,0.2);
}
.weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	background: #f1f1f1;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
	/* 为星期几的单元格添加细边框 */
	border-bottom: 1px solid #e0e0e0;
}
.weekdays > div {
	border-right: 1px solid #e0e0e0;
}
.weekdays > div:last-child {
	border-right: none;
}
.days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	background: white; /* 修改背景色，避免原 grid-gap 的干扰 */
}
.day {
	min-height: 115px;
	padding: 5px;
	background: white;
	position: relative;
	/* 为日期单元格添加细边框 */
	border: 1px solid #e0e0e0;
}
.day-number {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 24px;
}
.other-month {
	color: #999;
	background: #ccc;
}
.today {
	background: #dbf5ff;
}
.note-input {
	width: 100%;
	height: 60px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 5px;
	font-size: 12px;
	resize: none;
}
.month-selector {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px;
	background: #f1f1f1;
	gap: 5px; /* 统一按钮间距 */
}
.month-btn {
	flex: 1; /* 等宽分配 */
	min-width: 60px; /* 最小宽度 */
	max-width: 80px; /* 最大宽度 */
	margin: 0;
	padding: 8px 0; /* 统一内边距 */
	background: var(--theme2);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	line-height: 1.5; /* 统一行高 */
	height: 36px; /* 固定高度 */
	box-sizing: border-box; /* 包含padding计算 */
}
.month-btn:hover {
	background: var(--theme1);
}
.special-icon {
    width: 30px; /* 可根据需要修改宽度 */
    height: auto; /* 保持高度自适应 */
    /* margin-bottom: 2px; 图标与备注输入框的间距 */
}
.icon-text-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 0; /* 进一步缩小间距 */
    margin-bottom: 0px; /* 可根据需要调整这个值来改变行间距 */
}

.icon-text-container img {
    margin-right: 0; /* 移除图片右侧外边距 */
}

.icon-text-container span {
    margin-left: 0; /* 移除文本左侧外边距 */
}
.foot {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		color: #fff;
		background-image: linear-gradient(var(--theme1),var(--theme2));
		text-align: center;
	}