/* Frontend Styles for Edaminami Event Calendar */

.entei-calendar-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 20px 0;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.entei-calendar-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.entei-calendar-month {
	background: #fff;
	border: 1px solid #e1e8ed;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
}

.entei-calendar-title {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin-top: 0;
	margin-bottom: 15px;
	color: #2b5773;
}

.entei-calendar-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.entei-calendar-table th {
	background-color: #f7fafc;
	color: #718096;
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
	padding: 10px 5px;
	border-bottom: 2px solid #edf2f7;
}

.entei-calendar-table td {
	text-align: center;
	vertical-align: top;
	padding: 8px 3px;
	height: 65px;
	border-bottom: 1px solid #edf2f7;
	position: relative;
	box-sizing: border-box;
}

/* Day numbers */
.entei-calendar-day-num {
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	color: #2d3748;
}

/* Weekend coloring */
.entei-calendar-w-sunday .entei-calendar-day-num,
.entei-calendar-w-holiday .entei-calendar-day-num {
	color: #e53e3e;
}

.entei-calendar-w-saturday .entei-calendar-day-num {
	color: #3182ce;
}

/* Holiday text */
.entei-calendar-holiday-name {
	display: block;
	font-size: 1.0rem;
	color: #e53e3e;
	transform: scale(0.9);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
}

/* Day cell empty */
.entei-calendar-empty {
	background-color: #f7fafc;
}

/* Status labels styling */
.entei-calendar-status-tag {
	display: block;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.3;
	padding: 3px 2px;
	border-radius: 4px;
	margin-top: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	white-space: normal;
	word-break: break-all;
}

/* Default Status styles */
.entei-calendar-status-open {
	background-color: #e6fffa;
	color: #319795;
	border: 1px solid #b2f5ea;
}

.entei-calendar-status-close {
	background-color: #fff5f5;
	color: #e53e3e;
	border: 1px solid #fed7d7;
}
