/**
 * NewsTheme Lunar Bloc Calendar Widget Stylesheet
 * Thiết kế chuẩn phong cách Lịch Bloc Vạn Niên truyền thống
 */

.newstheme-lunar-calendar-card {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(180, 40, 50, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(220, 150, 155, 0.35);
	max-width: 380px;
	margin: 0 auto;
	background-color: #fff;
	user-select: none;
	position: relative;
}

/* ==========================================================================
   1. PHẦN TRÊN (DƯƠNG LỊCH)
   ========================================================================== */
.nlc-top-section {
	position: relative;
	background-color: #fae6e8;
	/* Hoa văn sóng nước mây truyền thống (Pattern Seigaiha dạng SVG) */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M20 0c-5.523 0-10 4.477-10 10 0 .513.04 1.016.115 1.507A9.972 9.972 0 0 0 0 20h2c0-4.418 3.582-8 8-8s8 3.582 8 8h2c0-4.418 3.582-8 8-8s8 3.582 8 8h2a9.972 9.972 0 0 0-10.115-8.493C29.96 11.016 30 10.513 30 10c0-5.523-4.477-10-10-10zm0 2c4.418 0 8 3.582 8 8 0 .428-.035.847-.1 1.255a11.968 11.968 0 0 1-7.9 6.745h-2.032A7.994 7.994 0 0 0 20 16a7.994 7.994 0 0 0-5.968 2H12a11.968 11.968 0 0 1-7.9-6.745A7.957 7.957 0 0 1 4 10c0-4.418 3.582-8 8-8s8 3.582 8 8zm0 4c-2.209 0-4 1.791-4 4 0 .324.04.639.113.94a9.97 9.97 0 0 0-4.113 7.06h2.032A7.994 7.994 0 0 1 18 16c1.15 0 2.21.246 3.167.683h2.666A9.969 9.969 0 0 0 20 10c0-2.209-1.791-4-4-4z' fill='%23d64c5d' fill-opacity='0.07'/%3E%3C/svg%3E");
	padding: 16px 14px 18px;
	text-align: center;
	border-bottom: 1px dashed rgba(210, 100, 110, 0.25);
}

/* Thanh chuyển tháng */
.nlc-month-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 8px;
}

.nlc-month-title {
	font-size: 15px;
	font-weight: 800;
	color: #b81424;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
	white-space: nowrap;
}

.nlc-btn-month {
	background: none;
	border: none;
	color: #b81424;
	font-size: 13px;
	cursor: pointer;
	padding: 2px 6px;
	line-height: 1;
	transition: transform 0.15s ease, color 0.15s ease;
}

.nlc-btn-month:hover {
	color: #8c0c19;
	transform: scale(1.2);
}

/* Khu vực hiển thị ngày lớn & mũi tên 2 bên */
.nlc-day-display {
	position: relative;
	margin: 5px 0 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Nút lùi / tiến ngày 2 bên */
.nlc-btn-day {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.45);
	border: none;
	width: 32px;
	height: 60px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: rgba(184, 20, 36, 0.5);
	font-size: 20px;
	transition: all 0.2s ease;
	z-index: 2;
}

.nlc-btn-day:hover {
	background: rgba(255, 255, 255, 0.85);
	color: #b81424;
}

.nlc-btn-day.nlc-prev {
	left: 0;
}

.nlc-btn-day.nlc-next {
	right: 0;
}

/* Số ngày dương lịch cực lớn */
.nlc-solar-day {
	font-size: 105px;
	font-weight: 800;
	line-height: 0.95;
	color: #c8102e;
	margin: 0;
	text-shadow: 0 2px 4px rgba(200, 16, 46, 0.12);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Tên thứ */
.nlc-day-of-week {
	font-size: 18px;
	font-weight: 800;
	color: #b81424;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 4px 0 14px;
}

/* Danh ngôn */
.nlc-quote-box {
	padding: 0 10px;
	min-height: 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nlc-quote-text {
	font-size: 13.5px;
	font-style: italic;
	color: #c2293d;
	line-height: 1.45;
	margin-bottom: 3px;
}

.nlc-quote-author {
	font-size: 12px;
	color: #b81424;
	opacity: 0.9;
}

/* ==========================================================================
   2. PHẦN DƯỚI (ÂM LỊCH & CHI TIẾT HOÀNG ĐẠO)
   ========================================================================== */
.nlc-bottom-section {
	background-color: #f8ebeb;
	padding: 16px 16px 14px;
	color: #3b2020;
}

/* Dòng tiêu đề Âm lịch */
.nlc-lunar-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(184, 20, 36, 0.12);
}

.nlc-con-giap-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b81424;
	opacity: 0.85;
}

.nlc-con-giap-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.nlc-lunar-day-number {
	font-size: 34px;
	font-weight: 800;
	color: #2b1414;
	line-height: 1;
}

.nlc-lunar-divider {
	font-size: 26px;
	color: rgba(184, 20, 36, 0.35);
	font-weight: 300;
	line-height: 1;
}

.nlc-lunar-month-name {
	font-size: 17px;
	font-weight: 800;
	color: #3b2020;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Hai cột thông tin chi tiết */
.nlc-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	font-size: 12.5px;
	line-height: 1.6;
}

/* Cột trái */
.nlc-col-left {
	text-align: right;
	padding-right: 6px;
	border-right: 1px solid rgba(184, 20, 36, 0.1);
}

.nlc-hoang-dao-status {
	font-weight: 800;
	color: #b81424;
	font-size: 13px;
	margin-bottom: 2px;
}

.nlc-hac-dao-status {
	font-weight: 800;
	color: #666;
	font-size: 13px;
	margin-bottom: 2px;
}

.nlc-canchi-year {
	font-weight: 700;
	color: #2b1414;
}

.nlc-canchi-month,
.nlc-canchi-day,
.nlc-canchi-hour,
.nlc-tiet-khi {
	color: #4a2e2e;
}

/* Đồng hồ thời gian thực */
.nlc-live-clock {
	font-family: "Courier New", Courier, monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	color: #2b1414;
	margin: 2px 0;
	letter-spacing: 0.5px;
}

/* Cột phải (Giờ Hoàng Đạo) */
.nlc-col-right {
	text-align: left;
	padding-left: 2px;
}

.nlc-gio-hd-title {
	font-weight: 700;
	color: #2b1414;
	margin-bottom: 2px;
	font-size: 12.5px;
}

.nlc-gio-hd-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #4a2e2e;
}

.nlc-gio-hd-list li {
	margin-bottom: 1px;
	white-space: nowrap;
}

/* ==========================================================================
   3. THANH ĐIỀU HƯỚNG DƯỚI CÙNG
   ========================================================================== */
.nlc-footer-nav {
	display: flex;
	background-color: #dfb6ba;
	border-top: 1px solid rgba(184, 20, 36, 0.15);
}

.nlc-nav-btn {
	flex: 1;
	background: none;
	border: none;
	padding: 10px 0;
	font-size: 13px;
	font-weight: 700;
	color: #5c2328;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nlc-nav-btn:hover {
	background-color: rgba(255, 255, 255, 0.35);
	color: #b81424;
}

.nlc-nav-btn:not(:last-child) {
	border-right: 1px solid rgba(184, 20, 36, 0.15);
}

/* Loading indicator khi chuyển ngày */
.newstheme-lunar-calendar-card.nlc-loading::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(250, 230, 232, 0.65);
	z-index: 10;
	backdrop-filter: blur(1px);
}
