/* =========================================
   TYC Liturgical Calendar Widget Styles
   ========================================= */

.tyc-liturgical-calendar {
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tyc-cal-header {
   background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
   color: #fff;
   padding: 20px 15px;
   text-align: center;
}

.tyc-cal-day {
   font-size: 3rem;
   font-weight: 700;
   line-height: 1;
   display: block;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tyc-cal-month {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   margin-top: 5px;
   display: block;
   opacity: 0.9;
}

.tyc-cal-body {
   border: 1px solid #e5e5e5;
   border-top: none;
   padding: 18px;
   background: #fff;
}

.tyc-cal-row {
   margin-bottom: 10px;
}

.tyc-cal-row:last-child {
   margin-bottom: 0;
}

.tyc-cal-day-name {
   font-weight: 600;
   color: #333;
   font-size: 0.95rem;
}

.tyc-cal-season {
   color: #555;
   font-size: 0.9rem;
}

.tyc-cal-color-row {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.85rem;
   color: #666;
}

.tyc-cal-color-dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   display: inline-block;
   flex-shrink: 0;
}

.tyc-cal-color-dot.color-xanh {
   background-color: #10b981;
}

.tyc-cal-color-dot.color-do {
   background-color: #ef4444;
}

.tyc-cal-color-dot.color-trang {
   background-color: #f9fafb;
   border: 1px solid #ddd;
}

.tyc-cal-color-dot.color-tim {
   background-color: #8b5cf6;
}

.tyc-cal-color-dot.color-hong {
   background-color: #ec4899;
}

.tyc-cal-color-dot.color-vang {
   background-color: #eab308;
}

.tyc-cal-action {
   margin-top: 15px;
}

.tyc-cal-action .tyc-cal-btn {
   display: block;
   width: 100%;
   padding: 12px 20px;
   background: #0084ff;
   color: #fff;
   text-align: center;
   text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
   font-size: 0.9rem;
   transition: all 0.2s ease;
}

.tyc-cal-action .tyc-cal-btn:hover {
   background: #0070dd;
   transform: translateY(-1px);
   box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

/* Dark Mode Support */
[data-theme="dark"] .tyc-liturgical-calendar {
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .tyc-cal-header {
   background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

[data-theme="dark"] .tyc-cal-body {
   background: #1f2937;
   border-color: #374151;
}

[data-theme="dark"] .tyc-cal-day-name {
   color: #e5e7eb;
}

[data-theme="dark"] .tyc-cal-season {
   color: #9ca3af;
}

[data-theme="dark"] .tyc-cal-color-row {
   color: #9ca3af;
}

[data-theme="dark"] .tyc-cal-action .tyc-cal-btn {
   background: #374151;
}

[data-theme="dark"] .tyc-cal-action .tyc-cal-btn:hover {
   background: #4b5563;
}