.ecp-calendar-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
} .ecp-view-switcher {
display: flex;
gap: 5px;
background: #f5f5f5;
padding: 5px;
border-radius: 8px;
margin-bottom: 20px;
overflow-x: auto;
}
.ecp-view-btn {
padding: 10px 20px;
background: transparent;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
color: #666;
transition: all 0.3s ease;
white-space: nowrap;
}
.ecp-view-btn:hover {
background: white;
color: #333;
}
.ecp-view-btn.active {
background: var(--ecp-primary-color, #e74c3c);
color: white;
} .ecp-calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
flex-wrap: wrap;
gap: 15px;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ecp-calendar-title {
font-size: 28px;
font-weight: 600;
color: #2c3e50;
}
.ecp-calendar-nav {
display: flex;
gap: 10px;
align-items: center;
}
.ecp-nav-btn {
padding: 10px 16px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}
.ecp-nav-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}
.ecp-date-picker {
display: flex;
gap: 10px;
align-items: center;
}
.ecp-date-picker select {
padding: 8px 12px;
border: 1px solid #e1e8ed;
border-radius: 6px;
font-size: 14px;
background: white;
cursor: pointer;
height: 2.8em;
} .ecp-search-filter-bar {
display: flex;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ecp-search-box {
flex: 1;
min-width: 250px;
position: relative;
}
.ecp-search-input {
width: 100%;
padding: 12px 40px 12px 15px;
border: 2px solid #e1e8ed;
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
}
.ecp-search-input:focus {
border-color: var(--ecp-primary-color, #e74c3c);
outline: none;
box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.ecp-search-btn {
position: absolute;
right: 5px;
top: 50%;
height:2.5rem;
transform: translateY(-50%);
padding: 8px 15px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
}
.ecp-filter-dropdown {
min-width: 150px;
}
.ecp-filter-dropdown select {
width: 100%;
padding: 12px 15px;
border: 2px solid #e1e8ed;
border-radius: 8px;
font-size: 14px;
background: white;
cursor: pointer;
transition: all 0.3s ease;
height:4em;
}
.ecp-filter-dropdown select:focus {
border-color: var(--ecp-primary-color, #e74c3c);
outline: none;
} .ecp-calendar-grid {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
overflow: hidden;
}
.ecp-calendar-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
background: #f8f9fa;
border-bottom: 2px solid #e1e8ed;
}
.ecp-weekday {
padding: 15px;
text-align: center;
font-weight: 600;
color: #2c3e50;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.ecp-calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1px;
background: #e1e8ed;
}
.ecp-day {
background: white;
min-height: 120px;
padding: 10px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.ecp-day:hover {
background: #f8f9fa;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
z-index: 1;
}
.ecp-day-number {
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
font-size: 16px;
}
.ecp-day.other-month .ecp-day-number {
color: #cbd5e0;
}
.ecp-day.today {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.ecp-day.today .ecp-day-number {
color: white;
}
.ecp-day-events {
margin-top: 8px;
}
.ecp-event-item {
padding: 4px 8px;
margin: 3px 0;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-radius: 4px;
font-size: 12px;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: all 0.3s ease;
}
.ecp-event-item:hover {
transform: translateX(3px);
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
} .ecp-weekly-view {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
overflow: hidden;
}
.ecp-week-tabs {
display: flex;
background: #f8f9fa;
border-bottom: 2px solid #e1e8ed;
overflow-x: auto;
}
.ecp-week-tab {
flex: 1;
min-width: 120px;
padding: 15px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
border-right: 1px solid #e1e8ed;
}
.ecp-week-tab:last-child {
border-right: none;
}
.ecp-week-tab:hover {
background: white;
}
.ecp-week-tab.active {
background: var(--ecp-primary-color, #e74c3c);
color: white;
}
.ecp-week-content {
padding: 20px;
}
.ecp-week-events {
display: grid;
gap: 15px;
} .ecp-daily-view {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
overflow: hidden;
}
.ecp-daily-slider {
display: flex;
gap: 10px;
padding: 20px;
overflow-x: auto;
background: #f8f9fa;
border-bottom: 2px solid #e1e8ed;
}
.ecp-daily-slide {
min-width: 80px;
padding: 15px;
text-align: center;
background: white;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid transparent;
}
.ecp-daily-slide:hover {
border-color: var(--ecp-primary-color, #e74c3c);
transform: translateY(-2px);
}
.ecp-daily-slide.active {
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-color: var(--ecp-primary-color, #e74c3c);
}
.ecp-daily-slide .day-num {
font-size: 24px;
font-weight: 600;
}
.ecp-daily-slide .day-name {
font-size: 12px;
margin-top: 5px;
}
.ecp-daily-events {
padding: 20px;
}
.ecp-daily-timeline {
position: relative;
}
.ecp-time-slot {
display: flex;
padding: 10px 0;
border-bottom: 1px solid #e1e8ed;
}
.ecp-time-label {
width: 80px;
color: #7f8c8d;
font-size: 14px;
}
.ecp-time-events {
flex: 1;
padding-left: 20px;
} .ecp-yearly-view {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.ecp-month-card {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
}
.ecp-month-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.ecp-month-header {
background: var(--ecp-primary-color, #e74c3c);
color: white;
padding: 15px 20px;
}
.ecp-month-name {
font-size: 20px;
font-weight: 600;
}
.ecp-month-event-count {
font-size: 14px;
opacity: 0.9;
margin-top: 5px;
}
.ecp-month-events {
padding: 20px;
max-height: 300px;
overflow-y: auto;
}
.ecp-month-event {
padding: 10px;
margin-bottom: 10px;
background: #f8f9fa;
border-radius: 6px;
border-left: 4px solid var(--ecp-primary-color, #e74c3c);
}
.ecp-month-event-date {
font-size: 12px;
color: #7f8c8d;
margin-bottom: 5px;
}
.ecp-month-event-title {
font-size: 14px;
font-weight: 500;
color: #2c3e50;
} .ecp-list-view {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ecp-event-list-item {
display: flex;
gap: 20px;
padding: 20px;
margin-bottom: 15px;
background: #f8f9fa;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
align-items: center;
}
.ecp-event-list-item:hover {
transform: translateX(5px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.ecp-event-list-image {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 8px;
flex-shrink: 0;
}
.ecp-event-list-content {
flex: 1;
}
.ecp-event-list-title {
font-size: 18px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
}
.ecp-event-list-excerpt {
color: #7f8c8d;
font-size: 14px;
line-height: 1.6;
margin-bottom: 10px;
}
.ecp-event-list-meta {
display: flex;
gap: 20px;
font-size: 14px;
color: #95a5a6;
}
.ecp-event-list-meta-item {
display: flex;
align-items: center;
gap: 5px;
}
.ecp-event-list-details {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 15px;
background: white;
border-radius: 8px;
min-width: 140px;
}
.ecp-event-list-date {
font-size: 24px;
font-weight: 600;
color: var(--ecp-primary-color, #e74c3c);
}
.ecp-event-list-month {
font-size: 14px;
color: #7f8c8d;
margin-bottom: 5px;
}
.ecp-event-list-time {
font-size: 12px;
color: #95a5a6;
margin-top: 5px;
} .ecp-event-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
transition: all 0.3s ease;
cursor: pointer;
}
.ecp-event-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.ecp-event-card-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.ecp-event-card-content {
padding: 20px;
}
.ecp-event-card-date {
display: inline-block;
padding: 5px 10px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
margin-bottom: 10px;
}
.ecp-event-card-title {
font-size: 18px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
line-height: 1.4;
}
.ecp-event-card-excerpt {
color: #7f8c8d;
font-size: 14px;
line-height: 1.6;
margin-bottom: 15px;
}
.ecp-event-card-meta {
display: flex;
gap: 15px;
font-size: 13px;
color: #95a5a6;
padding-top: 15px;
border-top: 1px solid #e1e8ed;
}
.ecp-event-card-meta-item {
display: flex;
align-items: center;
gap: 5px;
} .ecp-event-status {
display: inline-block;
padding: 4px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.ecp-event-status.scheduled {
background: #2ecc71;
color: white;
}
.ecp-event-status.cancelled {
background: #e74c3c;
color: white;
}
.ecp-event-status.postponed {
background: #f39c12;
color: white;
}
.ecp-event-status.rescheduled {
background: #3498db;
color: white;
} .ecp-popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.8);
z-index: 999999;
align-items: center;
justify-content: center;
animation: fadeIn 0.3s ease;
}
.ecp-popup-overlay.active {
display: flex;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.ecp-popup-content {
background: white;
max-width: 800px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
border-radius: 12px;
position: relative;
animation: slideUp 0.3s ease;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.ecp-popup-close {
position: absolute;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
background: rgba(0,0,0,0.1);
border: none;
border-radius: 50%; cursor: pointer;
color: #666;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.ecp-popup-close:hover {
background: rgba(0,0,0,0.2);
transform: rotate(90deg);
}
.ecp-popup-image {
width: 100%;
height: 350px;
object-fit: cover;
}
.ecp-popup-body {
padding: 30px;
}
.ecp-popup-title {
font-size: 32px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 20px;
line-height: 1.3;
}
.ecp-popup-meta {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 2px solid #e1e8ed;
}
.ecp-popup-meta-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
color: #555;
}
.ecp-popup-meta-item i {
color: var(--ecp-primary-color, #e74c3c);
}
.ecp-popup-content-text {
font-size: 16px;
line-height: 1.8;
color: #444;
margin-bottom: 25px;
}
.ecp-popup-price {
display: inline-block;
padding: 10px 20px;
background: #2ecc71;
color: white;
border-radius: 6px;
font-size: 18px;
font-weight: 600;
margin-bottom: 25px;
}
.ecp-popup-price.free {
background: #3498db;
} .ecp-share-buttons {
display: flex;
gap: 10px;
flex-wrap: wrap;
padding-top: 25px;
border-top: 2px solid #e1e8ed;
}
.ecp-share-btn {
padding: 10px 20px;
border: 2px solid #e1e8ed;
background: white;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}
.ecp-share-btn:hover {
border-color: var(--ecp-primary-color, #e74c3c);
color: var(--ecp-primary-color, #e74c3c);
transform: translateY(-2px);
}
.ecp-share-btn i {
font-size: 16px;
} .ecp-frontend-form {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ecp-form-title {
font-size: 28px;
font-weight: 600;
color: #2c3e50;
margin-bottom: 30px;
text-align: center;
}
.ecp-form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 20px;
}
.ecp-form-group {
margin-bottom: 20px;
}
.ecp-form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #2c3e50;
font-size: 14px;
}
.ecp-form-label .required {
color: #e74c3c;
}
.ecp-form-input,
.ecp-form-textarea,
.ecp-form-select {
width: 100%;
padding: 12px 15px;
border: 2px solid #e1e8ed;
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
font-family: inherit;
}
.ecp-form-input:focus,
.ecp-form-textarea:focus,
.ecp-form-select:focus {
border-color: var(--ecp-primary-color, #e74c3c);
outline: none;
box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.ecp-form-textarea {
min-height: 120px;
resize: vertical;
}
.ecp-form-checkbox {
display: flex;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.ecp-form-checkbox input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
}
.ecp-form-submit {
width: 100%;
padding: 15px 30px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 20px;
}
.ecp-form-submit:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}
.ecp-form-message {
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
font-size: 14px;
}
.ecp-form-message.success {
background: #d4edda;
border: 1px solid #c3e6cb;
color: #155724;
}
.ecp-form-message.error {
background: #f8d7da;
border: 1px solid #f5c6cb;
color: #721c24;
} .ecp-load-more {
text-align: center;
margin-top: 30px;
}
.ecp-load-more-btn {
padding: 12px 30px;
background: var(--ecp-secondary-color, #3498db);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.ecp-load-more-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
} .ecp-loading {
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
}
.ecp-spinner {
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid var(--ecp-primary-color, #e74c3c);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .ecp-no-events {
text-align: center;
padding: 60px 20px;
color: #7f8c8d;
}
.ecp-no-events-icon {
font-size: 48px;
margin-bottom: 20px;
opacity: 0.3;
}
.ecp-no-events-text {
font-size: 18px;
font-weight: 500;
} @media (max-width: 1024px) {
.ecp-calendar-wrapper {
padding: 15px;
}
.ecp-event-list-item {
flex-direction: column;
}
.ecp-list-view .ecp-event-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.ecp-event-list-item {
flex-direction: row;
align-items: stretch;
padding: 0;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
border: 1px solid #f0f0f0;
}
.ecp-event-list-image {
width: 180px;
min-width: 180px;
height: auto;
min-height: 150px;
}
.ecp-event-list-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ecp-event-list-content {
flex: 1;
padding: 15px;
display: flex;
flex-direction: column;
justify-content: center;
}
.ecp-event-list-title {
font-size: 16px;
margin: 0 0 8px;
line-height: 1.3;
}
.ecp-event-list-excerpt {
font-size: 13px;
line-height: 1.5;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ecp-event-list-meta {
display: flex;
flex-wrap: wrap;
gap: 12px;
font-size: 12px;
}
.ecp-event-list-details {
display: flex;
align-items: center;
padding: 15px;
border-left: 1px solid #f0f0f0;
}
.ecp-date-box {
min-width: 55px;
padding: 10px;
}
.ecp-date-month {
font-size: 11px;
}
.ecp-date-day {
font-size: 22px;
}
} @media (max-width: 768px) {
.ecp-list-view .ecp-event-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.ecp-event-list-item {
flex-direction: column;
padding: 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
border: 1px solid #f0f0f0;
}
.ecp-event-list-image {
width: 100%;
height: 160px;
}
.ecp-event-list-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ecp-event-list-content {
padding: 15px;
display: flex;
flex-direction: row;
gap: 12px;
}
.ecp-event-list-details {
display: none;
}
.ecp-event-list-content::before {
content: '';
display: none;
} .ecp-event-list-item .ecp-date-box-mobile {
display: flex;
}
.ecp-date-box {
min-width: 50px;
padding: 8px 10px;
border-radius: 8px;
flex-shrink: 0;
height: fit-content;
}
.ecp-date-month {
font-size: 10px;
}
.ecp-date-day {
font-size: 20px;
}
.ecp-event-list-info {
flex: 1;
min-width: 0;
}
.ecp-event-list-title {
font-size: 15px;
margin: 0 0 6px;
line-height: 1.3;
}
.ecp-event-list-excerpt {
font-size: 13px;
line-height: 1.4;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ecp-event-list-meta {
flex-direction: column;
gap: 5px;
font-size: 12px;
}
.ecp-event-list-meta span {
display: flex;
align-items: center;
gap: 5px;
}
}
@media (max-width: 480px) {
.ecp-event-list-image {
height: 140px;
}
.ecp-event-list-content {
padding: 12px;
gap: 10px;
}
.ecp-date-box {
min-width: 45px;
padding: 6px 8px;
}
.ecp-date-day {
font-size: 18px;
}
.ecp-event-list-title {
font-size: 14px;
}
.ecp-event-list-excerpt {
display: none;
}
}
@media (max-width: 768px) {
.ecp-calendar-header {
flex-direction: column;
align-items: flex-start;
}
.ecp-calendar-title {
font-size: 24px;
}
.ecp-view-switcher {
width: 100%;
justify-content: space-between;
}
.ecp-view-btn {
padding: 8px 12px;
font-size: 12px;
}
.ecp-calendar-weekdays,
.ecp-calendar-days {
grid-template-columns: repeat(7, 1fr);
}
.ecp-day {
min-height: 80px;
padding: 5px;
}
.ecp-weekday {
padding: 10px 5px;
font-size: 12px;
}
.ecp-event-item {
font-size: 10px;
padding: 2px 4px;
}
.ecp-yearly-view {
grid-template-columns: 1fr;
}
.ecp-popup-content {
border-radius: 0;
width: 100%;
height: 100vh;
max-height: 100vh;
}
.ecp-popup-title {
font-size: 24px;
}
.ecp-form-row {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.ecp-day {
min-height: 60px;
}
.ecp-day-number {
font-size: 14px;
}
.ecp-weekday {
font-size: 10px;
padding: 8px 2px;
}
.ecp-search-filter-bar {
flex-direction: column;
}
.ecp-search-box {
min-width: 100%;
}
} @media print {
.ecp-view-switcher,
.ecp-search-filter-bar,
.ecp-calendar-nav,
.ecp-share-buttons,
.ecp-popup-close {
display: none !important;
}
.ecp-calendar-wrapper {
max-width: 100%;
}
.ecp-day {
min-height: 60px;
break-inside: avoid;
}
} :root {
--ecp-primary-color: #e74c3c;
--ecp-secondary-color: #3498db;
--ecp-success-color: #2ecc71;
--ecp-warning-color: #f39c12;
--ecp-danger-color: #e74c3c;
--ecp-info-color: #3498db;
} .ecp-no-events-container {
text-align: center;
padding: 60px 20px;
color: #999;
}
.ecp-no-events-icon {
font-size: 64px;
margin-bottom: 20px;
opacity: 0.3;
}
.ecp-no-events-message,
.ecp-no-events {
font-size: 18px;
color: #666;
text-align: center;
padding: 40px;
}
.ecp-no-events-year {
text-align: center;
padding: 20px;
color: #999;
font-size: 16px;
grid-column: 1 / -1;
} .ecp-yearly-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
padding: 20px 0;
}
.ecp-month-mini-card {
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
padding: 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.ecp-month-mini-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.ecp-month-mini-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
}
.ecp-month-mini-header h4 {
margin: 0;
font-size: 18px;
color: #333;
}
.ecp-month-count {
background: var(--ecp-primary-color, #e74c3c);
color: white;
padding: 4px 8px;
border-radius: 12px;
font-size: 12px;
} .ecp-month-mini-calendar {
margin-bottom: 10px;
}
.ecp-mini-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
margin-bottom: 5px;
}
.ecp-mini-weekday {
text-align: center;
font-size: 10px;
font-weight: 600;
color: #999;
}
.ecp-mini-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
}
.ecp-mini-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
color: #666;
background: #f9f9f9;
border-radius: 2px;
}
.ecp-mini-day.has-events {
background: var(--ecp-primary-color, #e74c3c);
color: white;
font-weight: 600;
}
.ecp-mini-day.empty {
background: transparent;
}
.ecp-month-mini-events {
border-top: 1px solid #f0f0f0;
padding-top: 10px;
}
.ecp-mini-event {
font-size: 12px;
padding: 4px 0;
color: #666;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ecp-mini-more {
font-size: 11px;
color: var(--ecp-primary-color, #e74c3c);
font-weight: 600;
margin-top: 5px;
} .ecp-week-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 1px;
background: #e0e0e0;
}
.ecp-week-day {
background: white;
min-height: 400px;
}
.ecp-week-day-header {
background: #f5f5f5;
padding: 10px;
text-align: center;
border-bottom: 2px solid #e0e0e0;
}
.ecp-week-day-name {
font-weight: 600;
color: #333;
font-size: 14px;
}
.ecp-week-day-date {
font-size: 18px;
color: #666;
margin-top: 5px;
}
.ecp-week-day-events {
padding: 10px;
}
.ecp-week-event {
background: #f9f9f9;
padding: 8px;
margin-bottom: 8px;
border-left: 3px solid var(--ecp-primary-color, #e74c3c);
border-radius: 3px;
cursor: pointer;
transition: all 0.2s ease;
}
.ecp-week-event:hover {
background: #f0f0f0;
transform: translateX(2px);
}
.ecp-week-event-time {
font-size: 11px;
color: #999;
margin-bottom: 4px;
}
.ecp-week-event-title {
font-size: 13px;
font-weight: 500;
color: #333;
margin-bottom: 4px;
}
.ecp-week-event-venue {
font-size: 11px;
color: #666;
}
.ecp-no-events-day {
text-align: center;
color: #ccc;
font-size: 12px;
padding: 20px 5px;
} .ecp-daily-event-list {
max-width: 800px;
margin: 0 auto;
}
.ecp-daily-event-card {
display: flex;
background: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 15px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
}
.ecp-daily-event-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
transform: translateY(-2px);
}
.ecp-daily-event-time {
background: var(--ecp-primary-color, #e74c3c);
color: white;
padding: 20px;
min-width: 120px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
}
.ecp-daily-event-content {
padding: 20px;
flex: 1;
}
.ecp-daily-event-title {
margin: 0 0 10px;
font-size: 18px;
color: #333;
}
.ecp-daily-event-venue {
color: #666;
font-size: 14px;
margin-bottom: 10px;
}
.ecp-daily-event-venue i {
margin-right: 5px;
color: #999;
}
.ecp-daily-event-excerpt {
color: #777;
font-size: 14px;
line-height: 1.5;
} .ecp-event-list-date {
display: flex;
align-items: center;
padding: 0 20px;
}
.ecp-date-box {
text-align: center;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-radius: 8px;
padding: 10px;
min-width: 60px;
}
.ecp-date-month {
font-size: 12px;
text-transform: uppercase;
margin-bottom: 5px;
}
.ecp-date-day {
font-size: 24px;
font-weight: bold;
} .ecp-event-item {
display: flex;
flex-direction: column;
padding: 3px 5px;
margin: 2px 0;
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-radius: 3px;
font-size: 11px;
cursor: pointer;
transition: all 0.2s ease;
}
.ecp-event-item:hover {
transform: translateX(2px);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ecp-event-time {
font-size: 10px;
opacity: 0.9;
}
.ecp-event-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .ecp-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 100;
}
.ecp-loading p {
margin-top: 10px;
color: #666;
} @media (max-width: 768px) {
.ecp-yearly-grid {
grid-template-columns: 1fr;
}
.ecp-week-days {
grid-template-columns: 1fr;
}
.ecp-week-day {
min-height: auto;
margin-bottom: 10px;
border: 1px solid #e0e0e0;
}
.ecp-daily-event-card {
flex-direction: column;
}
.ecp-daily-event-time {
min-width: auto;
padding: 10px;
}
}  .ecp-header-bar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
padding: 12px 15px;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
margin-bottom: 15px;
flex-wrap: wrap;
} .ecp-header-left {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.ecp-header-left .ecp-nav-btn {
padding: 6px 10px;
background: #f5f5f5;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
color: #555;
transition: all 0.2s ease;
}
.ecp-header-left .ecp-nav-btn:hover {
background: var(--ecp-primary-color, #e74c3c);
color: #fff;
}
.ecp-header-left .ecp-today-btn {
font-weight: 500;
} .ecp-date-picker {
display: flex;
gap: 5px;
}
.ecp-date-picker select {
padding: 6px 8px;
border: 1px solid #e0e0e0;
border-radius: 5px;
font-size: 13px;
background: #fff;
cursor: pointer;
color: #333;
}
.ecp-date-picker select:focus {
outline: none;
border-color: var(--ecp-primary-color, #e74c3c);
} .ecp-calendar-title {
font-size: 16px;
font-weight: 600;
color: #333;
margin: 0;
white-space: nowrap;
display: none; } .ecp-header-center {
flex: 1;
display: flex;
justify-content: center;
}
.ecp-header-center {
flex: 1;
display: flex;
justify-content: center;
align-items: center; height: 100%;
}
.ecp-view-switcher {
display: flex;
align-items: center; background: #f5f5f5;
border-radius: 6px;
padding: 3px;
gap: 2px;
margin: 0; }
.ecp-view-btn {
display: flex;
align-items: center;
gap: 5px;
padding: 6px 12px;
background: transparent;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 13px;
color: #666;
transition: all 0.2s ease;
white-space: nowrap;
}
.ecp-view-btn i {
font-size: 12px;
}
.ecp-view-btn span {
font-weight: 500;
}
.ecp-view-btn:hover {
background: #e8e8e8;
color: #333;
}
.ecp-view-btn.active {
background: var(--ecp-primary-color, #e74c3c);
color: #fff;
box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
} .ecp-header-right {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.ecp-filter-dropdown select {
padding: 6px 10px;
border: 1px solid #e0e0e0;
border-radius: 5px;
font-size: 13px;
background: #fff;
cursor: pointer;
min-width: 120px;
}
.ecp-filter-dropdown select:focus {
outline: none;
border-color: var(--ecp-primary-color, #e74c3c);
}
.ecp-search-box {
display: flex;
align-items: center;
background: #f5f5f5;
border-radius: 5px;
overflow: hidden;
}
.ecp-search-input {
padding: 6px 10px;
border: none;
background: transparent;
font-size: 13px;
width: 140px;
outline: none;
}
.ecp-search-input::placeholder {
color: #999;
}
.ecp-search-btn {
padding: 6px 10px;
background: var(--ecp-primary-color, #e74c3c);
border: none;
color: #fff;
cursor: pointer;
transition: all 0.2s ease;
}
.ecp-search-btn:hover {
background: #c0392b;
}  @media (max-width: 1024px) {
.ecp-header-bar {
padding: 10px 12px;
gap: 10px;
}
.ecp-view-btn span {
display: none;
}
.ecp-view-btn {
padding: 8px 10px;
}
.ecp-view-btn i {
font-size: 14px;
}
.ecp-search-input {
width: 100px;
}
} @media (max-width: 768px) {
.ecp-header-bar {
flex-direction: column;
align-items: stretch;
gap: 10px;
padding: 10px;
}
.ecp-header-left {
justify-content: space-between;
order: 1;
}
.ecp-header-left .ecp-calendar-title {
display: block;
flex: 1;
text-align: center;
}
.ecp-date-picker {
display: none;
}
.ecp-header-center {
order: 3;
}
.ecp-view-switcher {
width: 100%;
justify-content: space-between;
}
.ecp-view-btn {
flex: 1;
justify-content: center;
padding: 8px 5px;
}
.ecp-header-right {
order: 2;
justify-content: space-between;
}
.ecp-filter-dropdown {
flex: 1;
}
.ecp-filter-dropdown select {
width: 100%;
min-width: auto;
}
.ecp-search-box {
flex: 1;
}
.ecp-search-input {
width: 100%;
flex: 1;
}
} @media (max-width: 480px) {
.ecp-header-bar {
padding: 8px;
}
.ecp-header-left .ecp-nav-btn {
padding: 6px 8px;
font-size: 12px;
}
.ecp-view-btn {
padding: 6px 4px;
}
.ecp-view-btn i {
font-size: 13px;
}
.ecp-calendar-title {
font-size: 14px;
}
}  .ecp-calendar-wrapper.compact .ecp-header-bar {
padding: 8px 12px;
}
.ecp-calendar-wrapper.compact .ecp-nav-btn {
padding: 4px 8px;
font-size: 12px;
}
.ecp-calendar-wrapper.compact .ecp-date-picker select {
padding: 4px 6px;
font-size: 12px;
}
.ecp-calendar-wrapper.compact .ecp-view-btn {
padding: 4px 8px;
font-size: 11px;
}
.ecp-calendar-wrapper.compact .ecp-view-btn span {
display: none;
}
.ecp-calendar-wrapper.compact .ecp-search-input {
padding: 4px 8px;
font-size: 12px;
width: 100px;
}
.ecp-calendar-wrapper.compact .ecp-search-btn {
padding: 4px 8px;
}
.ecp-calendar-wrapper.compact .ecp-filter-dropdown select {
padding: 4px 6px;
font-size: 12px;
min-width: 100px;
}  .ecp-popup-calendar-actions {
margin-top: 25px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.ecp-popup-calendar-actions h4,
.ecp-popup-share h4 {
font-size: 14px;
color: #666;
margin: 0 0 12px;
display: flex;
align-items: center;
gap: 8px;
}
.ecp-calendar-buttons {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.ecp-cal-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 15px;
background: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
color: #333;
transition: all 0.2s ease;
}
.ecp-cal-btn:hover {
background: #e8e8e8;
border-color: #ccc;
}
.ecp-cal-btn i {
font-size: 16px;
}
.ecp-add-google:hover {
background: #4285f4;
color: white;
border-color: #4285f4;
}
.ecp-add-ical:hover {
background: #333;
color: white;
border-color: #333;
}
.ecp-add-outlook:hover {
background: #0078d4;
color: white;
border-color: #0078d4;
} .ecp-popup-share {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.ecp-share-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.ecp-share-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
color: white;
transition: all 0.2s ease;
}
.ecp-share-btn:hover {
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ecp-share-facebook {
background: #1877f2;
}
.ecp-share-twitter {
background: #1da1f2;
}
.ecp-share-linkedin {
background: #0a66c2;
}
.ecp-share-whatsapp {
background: #25d366;
}
.ecp-share-email {
background: #ea4335;
}
.ecp-share-copy {
background: #6c757d;
} .ecp-daily-event-card {
display: flex;
background: white;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 15px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
}
.ecp-daily-event-card:hover {
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
transform: translateY(-2px);
}
.ecp-daily-event-image {
width: 150px;
min-height: 120px;
flex-shrink: 0;
}
.ecp-daily-event-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ecp-daily-event-time {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 15px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
min-width: 80px;
}
.ecp-daily-date-box {
text-align: center;
margin-bottom: 8px;
}
.ecp-daily-month {
display: block;
font-size: 12px;
text-transform: uppercase;
opacity: 0.9;
}
.ecp-daily-day {
display: block;
font-size: 24px;
font-weight: 700;
line-height: 1;
}
.ecp-daily-time-text {
font-size: 11px;
text-align: center;
}
.ecp-daily-event-content {
padding: 15px;
flex: 1;
}
.ecp-daily-event-title {
margin: 0 0 8px;
font-size: 16px;
color: #333;
}
.ecp-daily-event-venue {
color: #666;
font-size: 13px;
margin-bottom: 8px;
}
.ecp-daily-event-venue i {
margin-right: 5px;
color: #999;
}
.ecp-daily-event-excerpt {
color: #777;
font-size: 13px;
line-height: 1.5;
} @media (max-width: 600px) {
.ecp-daily-event-card {
flex-direction: column;
}
.ecp-daily-event-image {
width: 100%;
height: 150px;
}
.ecp-daily-event-time {
flex-direction: row;
gap: 15px;
padding: 10px;
}
.ecp-daily-date-box {
margin-bottom: 0;
}
.ecp-calendar-buttons {
flex-direction: column;
}
.ecp-cal-btn {
width: 100%;
justify-content: center;
}
} .ecp-events-list-shortcode {
padding: 20px 0;
} .ecp-events-grid {
display: grid;
gap: 25px;
}
.ecp-layout-grid .ecp-events-grid {
grid-template-columns: repeat(3, 1fr);
}
.ecp-layout-list .ecp-events-grid {
grid-template-columns: 1fr;
}
.ecp-layout-compact .ecp-events-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
} .ecp-event-item-card {
background: white;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
overflow: hidden;
transition: all 0.3s ease;
}
.ecp-event-item-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.12);
} .ecp-layout-list .ecp-event-item-card {
display: flex;
flex-direction: row;
}
.ecp-layout-list .ecp-event-image {
width: 250px;
flex-shrink: 0;
}
.ecp-layout-list .ecp-event-details {
flex: 1;
} .ecp-event-image {
position: relative;
overflow: hidden;
}
.ecp-event-image img {
width: 100%;
height: 180px;
object-fit: cover;
transition: transform 0.3s ease;
}
.ecp-event-item-card:hover .ecp-event-image img {
transform: scale(1.05);
}
.ecp-event-badge {
position: absolute;
top: 10px;
right: 10px;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.ecp-badge-free {
background: #27ae60;
color: white;
} .ecp-event-details {
padding: 20px;
position: relative;
}
.ecp-event-date-badge {
position: absolute;
top: -30px;
left: 20px;
background: var(--ecp-primary-color, #e74c3c);
color: white;
padding: 8px 12px;
border-radius: 8px;
text-align: center;
box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}
.ecp-event-date-badge .ecp-month {
display: block;
font-size: 11px;
text-transform: uppercase;
}
.ecp-event-date-badge .ecp-day {
display: block;
font-size: 20px;
font-weight: 700;
line-height: 1;
}
.ecp-layout-list .ecp-event-date-badge {
position: static;
display: inline-block;
margin-bottom: 10px;
}
.ecp-event-title {
margin: 15px 0 10px;
font-size: 18px;
line-height: 1.3;
}
.ecp-event-title a {
color: #333;
text-decoration: none;
transition: color 0.2s ease;
}
.ecp-event-title a:hover {
color: var(--ecp-primary-color, #e74c3c);
}
.ecp-event-meta {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 10px;
}
.ecp-meta-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #666;
}
.ecp-meta-item i {
color: #999;
}
.ecp-event-excerpt {
color: #666;
font-size: 14px;
line-height: 1.5;
margin-bottom: 15px;
}
.ecp-event-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--ecp-primary-color, #e74c3c);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: gap 0.2s ease;
}
.ecp-event-link:hover {
gap: 10px;
} .ecp-layout-compact .ecp-event-image img {
height: 120px;
}
.ecp-layout-compact .ecp-event-details {
padding: 15px;
}
.ecp-layout-compact .ecp-event-title {
font-size: 15px;
margin: 10px 0 8px;
}
.ecp-layout-compact .ecp-event-excerpt {
display: none;
}
.ecp-layout-compact .ecp-event-date-badge {
top: -25px;
padding: 6px 10px;
}
.ecp-layout-compact .ecp-event-date-badge .ecp-day {
font-size: 16px;
} @media (max-width: 992px) {
.ecp-layout-grid .ecp-events-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.ecp-layout-grid .ecp-events-grid,
.ecp-layout-compact .ecp-events-grid {
grid-template-columns: 1fr;
}
.ecp-layout-list .ecp-event-item-card {
flex-direction: column;
}
.ecp-layout-list .ecp-event-image {
width: 100%;
}
} .ecp-daily-slider {
display: flex;
align-items: center;
gap: 10px;
padding: 15px;
background: #f8f9fa; margin-bottom: 20px;
}
.ecp-slider-arrow {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: white;
border: 1px solid #e0e0e0;
border-radius: 50%;
cursor: pointer;
color: #666;
transition: all 0.2s ease;
flex-shrink: 0;
}
.ecp-slider-arrow:hover {
background: var(--ecp-primary-color, #e74c3c);
border-color: var(--ecp-primary-color, #e74c3c);
color: white;
}
.ecp-daily-slides-container {
flex: 1;
padding:10px 0;
overflow: hidden;
position: relative;
}
.ecp-daily-slides {
display: flex;
gap: 8px;
transition: transform 0.3s ease;
}
.ecp-daily-slide {
min-width: 62px;
padding: 12px 8px;
text-align: center;
background: white;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid transparent;
flex-shrink: 0;
}
.ecp-daily-slide:hover {
border-color: var(--ecp-primary-color, #e74c3c);
transform: translateY(-2px);
}
.ecp-daily-slide.active {
background: var(--ecp-primary-color, #e74c3c);
color: white;
border-color: var(--ecp-primary-color, #e74c3c);
box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}
.ecp-daily-slide.today:not(.active) {
border-color: var(--ecp-primary-color, #e74c3c);
background: #fff5f5;
}
.ecp-daily-slide .day-name {
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 4px;
opacity: 0.8;
}
.ecp-daily-slide .day-num {
font-size: 20px;
font-weight: 700;
line-height: 1;
} @media (max-width: 600px) {
.ecp-daily-slider {
padding: 10px;
}
.ecp-slider-arrow {
width: 35px;
height: 35px;
}
.ecp-daily-slide {
min-width: 50px;
padding: 10px 6px;
}
.ecp-daily-slide .day-num {
font-size: 16px;
}
.ecp-daily-slide .day-name {
font-size: 10px;
}
} .ecp-sidebar-widget {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.ecp-widget-events {
display: flex;
flex-direction: column;
gap: 15px;
} .ecp-widget-event-card {
display: flex;
flex-direction: column;
background: #fff;
border-radius: 12px;
overflow: hidden;
text-decoration: none;
color: inherit;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
}
.ecp-widget-event-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
border-color: var(--ecp-primary-color, #e74c3c);
} .ecp-widget-image {
position: relative;
width: 100%;
height: 140px;
overflow: hidden;
}
.ecp-widget-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.ecp-widget-event-card:hover .ecp-widget-image img {
transform: scale(1.05);
}
.ecp-widget-badge {
position: absolute;
top: 10px;
right: 10px;
background: #27ae60;
color: white;
padding: 4px 10px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.ecp-widget-badge-price {
background: var(--ecp-primary-color, #e74c3c);
} .ecp-widget-content {
display: flex;
padding: 15px;
gap: 12px;
} .ecp-widget-date {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--ecp-primary-color, #e74c3c) 0%, #c0392b 100%);
color: white;
border-radius: 10px;
padding: 10px 12px;
min-width: 55px;
flex-shrink: 0;
text-align: center;
box-shadow: 0 3px 10px rgba(231, 76, 60, 0.25);
}
.ecp-widget-date-day {
font-size: 22px;
font-weight: 700;
line-height: 1;
}
.ecp-widget-date-month {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
margin-top: 3px;
opacity: 0.9;
}
.ecp-widget-date-year {
font-size: 10px;
opacity: 0.7;
margin-top: 2px;
} .ecp-widget-info {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
}
.ecp-widget-title {
font-size: 15px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 8px;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ecp-widget-event-card:hover .ecp-widget-title {
color: var(--ecp-primary-color, #e74c3c);
} .ecp-widget-meta {
display: flex;
flex-direction: column;
gap: 5px;
margin-bottom: 8px;
}
.ecp-widget-meta-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: #7f8c8d;
}
.ecp-widget-meta-item i {
font-size: 11px;
color: #bdc3c7;
width: 14px;
text-align: center;
}
.ecp-widget-meta-item span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .ecp-widget-excerpt {
font-size: 13px;
color: #7f8c8d;
line-height: 1.5;
margin: 0 0 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
} .ecp-widget-readmore {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
font-weight: 600;
color: var(--ecp-primary-color, #e74c3c);
margin-top: auto;
transition: gap 0.2s ease;
}
.ecp-widget-event-card:hover .ecp-widget-readmore {
gap: 8px;
}
.ecp-widget-readmore i {
font-size: 10px;
transition: transform 0.2s ease;
}
.ecp-widget-event-card:hover .ecp-widget-readmore i {
transform: translateX(3px);
} .ecp-widget-empty {
text-align: center;
padding: 30px 20px;
background: #f9f9f9;
border-radius: 12px;
border: 2px dashed #e0e0e0;
}
.ecp-widget-empty-icon {
font-size: 40px;
color: #ccc;
margin-bottom: 10px;
}
.ecp-widget-empty p {
margin: 0;
color: #999;
font-size: 14px;
}  @media (max-width: 350px) {
.ecp-widget-content {
flex-direction: column;
padding: 12px;
}
.ecp-widget-date {
flex-direction: row;
gap: 8px;
padding: 8px 12px;
min-width: auto;
width: fit-content;
}
.ecp-widget-date-day {
font-size: 18px;
}
.ecp-widget-date-month {
margin-top: 0;
}
.ecp-widget-date-year {
margin-top: 0;
}
.ecp-widget-image {
height: 120px;
}
} @media (min-width: 500px) and (max-width: 768px) {
.ecp-widget-event-card {
flex-direction: row;
}
.ecp-widget-image {
width: 120px;
height: auto;
min-height: 120px;
}
.ecp-widget-content {
flex: 1;
}
} @media (min-width: 400px) {
.ecp-sidebar-widget.ecp-widget-horizontal .ecp-widget-event-card {
flex-direction: row;
}
.ecp-sidebar-widget.ecp-widget-horizontal .ecp-widget-image {
width: 100px;
height: auto;
min-height: 100px;
}
.ecp-sidebar-widget.ecp-widget-horizontal .ecp-widget-content {
flex: 1;
}
} .ecp-widget-event-card:not(:has(.ecp-widget-image)) .ecp-widget-content {
padding: 15px;
}
.ecp-widget-event-card:not(:has(.ecp-widget-image)) {
border-left: 4px solid var(--ecp-primary-color, #e74c3c);
} @media (hover: hover) {
.ecp-widget-event-card:hover .ecp-widget-badge {
transform: scale(1.05);
}
} @media (prefers-color-scheme: dark) {
.ecp-sidebar-widget {
color: #e0e0e0;
}
.ecp-widget-event-card {
background: #2c2c2c;
border-color: #404040;
}
.ecp-widget-title {
color: #fff;
}
.ecp-widget-meta-item {
color: #aaa;
}
.ecp-widget-excerpt {
color: #999;
}
.ecp-widget-empty {
background: #2c2c2c;
border-color: #404040;
}
} .ecp-daily-header h3{
text-align: center;
margin:25px 0;
color:#888;
font-size: 2.3em;
}  @media (max-width: 768px) {
.ecp-list-view .ecp-event-list {
display: flex;
flex-direction: column;
gap: 15px;
}
.ecp-event-list-item {
flex-direction: column;
padding: 0;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
border: 1px solid #f0f0f0;
}
.ecp-event-list-image {
width: 100%;
height: 160px;
}
.ecp-event-list-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ecp-event-list-content {
padding: 15px;
display: flex;
flex-direction: row;
gap: 12px;
}
.ecp-event-list-date {
position: static;
order: -1;
}
.ecp-date-box {
min-width: 50px;
padding: 8px 10px;
border-radius: 8px;
flex-shrink: 0;
}
.ecp-date-month {
font-size: 10px;
}
.ecp-date-day {
font-size: 20px;
}
.ecp-event-list-title {
font-size: 15px;
margin: 0 0 6px;
line-height: 1.3;
}
.ecp-event-list-excerpt {
font-size: 13px;
line-height: 1.4;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ecp-event-list-meta {
flex-direction: column;
gap: 5px;
font-size: 12px;
}
.ecp-event-list-meta span {
display: flex;
align-items: center;
gap: 5px;
}
.ecp-event-list-details {
display: none;
}
}
@media (max-width: 480px) {
.ecp-event-list-image {
height: 140px;
}
.ecp-event-list-content {
padding: 12px;
gap: 10px;
}
.ecp-date-box {
min-width: 45px;
padding: 6px 8px;
}
.ecp-date-day {
font-size: 18px;
}
.ecp-event-list-title {
font-size: 14px;
}
} @media (max-width: 768px) {
.ecp-calendar-grid {
border-radius: 8px;
overflow: hidden;
}
.ecp-calendar-weekdays {
background: #f8f8f8;
}
.ecp-weekday {
padding: 10px 2px;
font-size: 11px;
font-weight: 600;
}
.ecp-calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
}
.ecp-day {
min-height: 50px;
max-height: 50px;
height: 50px;
padding: 5px 3px;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
}
.ecp-day-number {
font-size: 13px;
font-weight: 500;
margin-bottom: 3px;
}
.ecp-day-events {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2px;
margin-top: auto;
} .ecp-day .ecp-event-item {
width: 6px;
height: 6px;
min-width: 6px;
min-height: 6px;
padding: 0;
margin: 0;
border-radius: 50%;
font-size: 0;
line-height: 0;
overflow: hidden;
}
.ecp-day .ecp-event-item span,
.ecp-day .ecp-event-item .ecp-event-time,
.ecp-day .ecp-event-item .ecp-event-title {
display: none;
}
.ecp-day .ecp-more-events {
font-size: 8px;
padding: 0;
margin: 0;
background: none;
color: #999;
}
}
@media (max-width: 480px) {
.ecp-weekday {
padding: 8px 2px;
font-size: 10px;
}
.ecp-day {
min-height: 45px;
max-height: 45px;
height: 45px;
padding: 4px 2px;
}
.ecp-day-number {
font-size: 12px;
}
.ecp-day .ecp-event-item {
width: 5px;
height: 5px;
min-width: 5px;
min-height: 5px;
}
} @media (max-width: 768px) {
.ecp-weekly-view {
background: #fff;
border-radius: 10px;
overflow: hidden;
}
.ecp-week-tabs {
display: flex;
overflow-x: auto;
gap: 0;
padding: 0;
background: #f5f5f5;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.ecp-week-tabs::-webkit-scrollbar {
display: none;
}
.ecp-week-tab {
flex: 0 0 auto;
min-width: 80px;
padding: 10px 12px;
text-align: center;
border-right: 1px solid #e0e0e0;
}
.ecp-week-tab:last-child {
border-right: none;
}
.ecp-week-label {
font-size: 11px;
font-weight: 600;
}
.ecp-week-dates {
font-size: 10px;
color: #666;
margin-top: 2px;
}
.ecp-week-count {
font-size: 9px;
color: #999;
margin-top: 2px;
}
.ecp-week-tab.active {
background: var(--ecp-primary-color, #e74c3c);
color: #fff;
}
.ecp-week-tab.active .ecp-week-dates,
.ecp-week-tab.active .ecp-week-count {
color: rgba(255,255,255,0.8);
} .ecp-week-days {
display: flex;
flex-direction: column;
gap: 1px;
background: #e8e8e8;
}
.ecp-week-day {
min-height: auto;
background: #fff;
}
.ecp-week-day-header {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
background: #fafafa;
border-bottom: 1px solid #eee;
}
.ecp-week-day-name {
font-size: 12px;
font-weight: 600;
min-width: 35px;
}
.ecp-week-day-date {
font-size: 12px;
color: #666;
}
.ecp-week-day-events {
padding: 8px 10px;
}
.ecp-week-event {
padding: 8px 10px;
margin-bottom: 6px;
border-radius: 6px;
border-left-width: 3px;
}
.ecp-week-event-time {
font-size: 10px;
}
.ecp-week-event-title {
font-size: 12px;
line-height: 1.3;
}
.ecp-week-event-venue {
font-size: 10px;
}
.ecp-no-events-day {
padding: 10px;
font-size: 11px;
}
}
@media (max-width: 480px) {
.ecp-week-tab {
min-width: 70px;
padding: 8px 10px;
}
.ecp-week-label {
font-size: 10px;
}
.ecp-week-dates {
font-size: 9px;
}
.ecp-week-count {
font-size: 8px;
}
.ecp-week-day-header {
padding: 6px 10px;
}
.ecp-week-day-name {
font-size: 11px;
min-width: 30px;
}
.ecp-week-day-date {
font-size: 11px;
}
.ecp-week-day-events {
padding: 6px 8px;
}
.ecp-week-event {
padding: 6px 8px;
margin-bottom: 5px;
}
} @media (max-width: 768px) {
.ecp-daily-slider {
padding: 10px;
gap: 8px;
}
.ecp-slider-arrow {
width: 32px;
height: 32px;
font-size: 12px;
}
.ecp-daily-slide {
min-width: 50px;
padding: 8px 5px;
}
.ecp-daily-slide .day-num {
font-size: 16px;
}
.ecp-daily-slide .day-name {
font-size: 9px;
}
.ecp-daily-event-card {
flex-direction: column;
}
.ecp-daily-event-image {
width: 100%;
height: 140px;
}
.ecp-daily-event-time {
flex-direction: row;
gap: 10px;
padding: 10px 12px;
min-width: auto;
}
.ecp-daily-date-box {
margin-bottom: 0;
}
.ecp-daily-event-content {
padding: 12px;
}
.ecp-daily-event-title {
font-size: 15px;
}
} @media (max-width: 768px) {
.ecp-yearly-grid {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.ecp-month-mini-card {
padding: 12px;
}
.ecp-month-mini-header h4 {
font-size: 14px;
}
.ecp-month-count {
font-size: 10px;
padding: 3px 6px;
}
.ecp-mini-day {
font-size: 9px;
}
.ecp-mini-event {
font-size: 10px;
}
}
@media (max-width: 480px) {
.ecp-yearly-grid {
grid-template-columns: 1fr;
gap: 10px;
}
} @media (max-width: 768px) {
.ecp-header-bar {
padding: 10px;
gap: 8px;
}
.ecp-view-switcher {
order: 3;
width: 100%;
justify-content: space-between;
padding: 2px;
border-radius: 6px;
}
.ecp-view-btn {
flex: 1;
padding: 8px 4px;
justify-content: center;
border-radius: 4px;
}
.ecp-view-btn span {
display: none;
}
.ecp-view-btn i {
margin: 0;
font-size: 14px;
}
}