﻿.day.selected {
	background-image: linear-gradient(
		to top,
		#48c6ef 0%,
		#6f86d6 100%
	) !important;
	color: white !important;
}

.calendar {
	width: 100%;
	border-radius: 8px;
}

.ca-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
	padding: 40px 10px;
	border-radius: 6px 6px 0 0;
}

.ca-header .ca-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ca-header .ca-title span {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.ca-nav {
	display: flex;
	gap: 10px;
	align-items: center;
}

.nav-btn {
	background: none;
	border: 1px solid white;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	color: white;
	font-weight: 700;
}

.nav-btn:hover {
	color: #000000;
	background-color: #f0f0f0;
}

.year-month {
	font-size: 1.2em;
	font-weight: bold;
	color: white;
}

.days-bg {
	height: 298px;
	background-color: white;
}

.weekdays,
.days-grid {
	background-color: white;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}

.weekdays div {
	text-align: center;
	padding: 8px;
	font-weight: bold;
	background-color: #f8f9fa;
	margin-bottom: 2px;
}

.day {
	padding: 12px;
	text-align: center;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.day.current-month {
	background-color: white;
}

.day.other-month {
	color: #999;
	background-color: #f8f9fa;
}

.day.today {
	color: #48c6ef;
	font-weight: bold;
}

.day:hover:not(.today) {
	background-color: #e9ecef;
}