 
 .custom-date-picker {
 	background-color: white;
 	border-radius: 16px;
 	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 	overflow: hidden;
 	width: 100%;
 	/* max-width: 380px; */
 }

 .calendar-header {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 	padding: 20px;
 	background: #BF0F13;
 	color: white;
 }

 .calendar-header button {
 	background: rgba(255, 255, 255, 0.2);
 	border: none;
 	color: white;
 	width: 40px;
 	height: 40px;
 	border-radius: 50%;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	cursor: pointer;
 	transition: all 0.3s ease;
 	font-size: 18px;
 	font-weight: bold;
 }

 .calendar-header button:hover {
 	background: rgba(255, 255, 255, 0.3);
 	transform: scale(1.1);
 }

 .calendar-header h3 {
 	font-size: 1.4rem;
 	font-weight: 600;
 }

 .calendar-grid {
 	display: grid;
 	grid-template-columns: repeat(7, 1fr);
 	gap: 8px;
 	padding: 20px;
 }

 .weekday {
 	text-align: center;
 	font-weight: 600;
 	color: #495057;
 	padding: 10px 0;
 	border-bottom: 1px solid #eaeaea;
 }

 .calendar-day {
 	height: 40px;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 	border-radius: 10px;
 	cursor: pointer;
 	transition: all 0.3s ease;
 	position: relative;
 	font-weight: 500;
 }

 .calendar-day:hover:not(.disabled) {
 	background-color: #e9ecef;
 	transform: translateY(-2px);
 }

 .disabled {
 	color: #adb5bd;
 	cursor: not-allowed;
 }

 .today {
 	background-color: #4cc9f0;
 	color: white;
 	font-weight: 700;
 	box-shadow: 0 4px 8px rgba(76, 201, 240, 0.3);
 }

 .selected {
 	background: #BF0F13;
 	color: white;
 	font-weight: 700;
 	box-shadow: 0 4px 12px rgba(37, 117, 252, 0.4);
 	transform: scale(1.05);
 }

 .in-range {
 	background-color: #e7f2ff;
 	color: #2575fc;
 	font-weight: 600;
 }

 .range-start,
 .range-end {
 	background: #BF0F13;
 	color: white;
 	font-weight: 700;
 }

 .date-inputs {
 	display: flex;
 	gap: 20px;
 	justify-content: center;
 	margin: 20px 0;
 	padding: 0 20px;
 }

 .input-group {
 	display: flex;
 	flex-direction: column;
 	gap: 8px;
 	flex: 1;
 }

 .input-group label {
 	font-weight: 600;
 	color: #495057;
 	font-size: 0.9rem;
 }

 .input-group input {
 	padding: 10px 12px;
 	border: 2px solid #e2e8f0;
 	border-radius: 8px;
 	font-size: 0.9rem;
 	transition: all 0.3s ease;
 	width: 100%;
 }

 .input-group input:focus {
 	border-color: #2575fc;
 	outline: none;
 	box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.2);
 }

 .selection-info {
 	text-align: center;
 	margin: 15px 0;
 	padding: 0 20px;
 	font-weight: 500;
 	color: #495057;
 	min-height: 24px;
 }

 .highlight {
 	color: #2575fc;
 	font-weight: 600;
 }

 @media (max-width: 480px) {
 	.calendar-grid {
 		gap: 4px;
 		padding: 15px;
 	}

 	.calendar-day {
 		height: 36px;
 		font-size: 0.9rem;
 	}

 	.date-inputs {
 		flex-direction: column;
 		gap: 15px;
 	}
 }