/* Global Styles */
.ecp-calendar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* View Switcher */
.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;
}

/* Calendar Header */
.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;
}

/* Search and Filter Bar */
.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;
}

/* Monthly Calendar View */
.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);
}

/* Weekly View */
.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;
}

/* Daily View */
.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;
}

/* Yearly View */
.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;
}

/* List View */
.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;
}

/* Event Card */
.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;
}

/* Event Status Labels */
.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;
}

/* Event Popup Modal */
.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%;
    /*font-size: 24px;*/
    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;
}

/* Share Buttons */
.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;
}

/* Frontend Form */
.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;
}

/* Load More Button */
.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);
}

/* Loading Spinner */
.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); }
}

/* No Events Message */
.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ecp-calendar-wrapper {
        padding: 15px;
    }
    
    .ecp-event-list-item {
        flex-direction: column;
    }
    
    .ecp-event-list-image {
        width: 100%;
        height: 200px;
    }
}

@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%;
    }
}

/* Print Styles */
@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;
    }
}

/* Custom CSS Variables Support */
: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;
}

/* No Events Messages */
.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;
}

/* Yearly View Grid */
.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;
}

/* Mini Calendar */
.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;
}

/* Weekly View Enhanced */
.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;
}

/* Daily View Enhanced */
.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;
}

/* List View Date Box */
.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;
}

/* Event Item in Calendar */
.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;
}

/* Loading Improvements */
.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;
}

/* Responsive Improvements */
@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;
    }
}


/* =====================================================
   COMPACT HEADER BAR - Add this CSS to calendar-styles.css
   ===================================================== */

/* Main Header Bar */
.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;
}

/* Left Section: Nav + Date */
.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;
}

/* Date Picker */
.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);
}

/* Calendar Title */
.ecp-calendar-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    display: none; /* Hidden on desktop, shown on mobile */
}

/* Center Section: View Switcher */
.ecp-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ecp-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* This vertically centers the switcher */
    height: 100%;
}

.ecp-view-switcher {
    display: flex;
    align-items: center; /* This vertically centers the buttons inside */
    background: #f5f5f5;
    border-radius: 6px;
    padding: 3px;
    gap: 2px;
    margin: 0; /* Ensures no margin throws off centering */
}

.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);
}

/* Right Section: Search and Filter */
.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;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@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;
    }
}

/* Mobile */
@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;
    }
}

/* Small Mobile */
@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;
    }
}

/* =====================================================
   ALTERNATIVE: SINGLE LINE ULTRA COMPACT
   ===================================================== */

/* Use this class for an ultra-compact single line header */
.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;
}


/* =====================================================
   POPUP SHARE & CALENDAR BUTTONS
   ===================================================== */

/* Calendar Actions */
.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;
}

/* Social Share */
.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;
}

/* Daily Event Card Enhanced */
.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;
}

/* Responsive */
@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;
    }
}

/* =====================================================
   EVENTS LIST SHORTCODE STYLES
   ===================================================== */

.ecp-events-list-shortcode {
    padding: 20px 0;
}

/* Grid Layout */
.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;
}

/* Event Card */
.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);
}

/* List Layout Card */
.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;
}

/* Event Image */
.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;
}

/* Event Details */
.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;
}

/* Compact Layout */
.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;
}

/* Responsive */
@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%;
    }
}


/* =====================================================
   DAILY SLIDER WITH ARROWS
   ===================================================== */

.ecp-daily-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    /*border-radius: 10px;*/
    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;
}

/* Responsive */
@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;
    }
}

/*jamin*/
.ecp-daily-header h3{
    text-align: center;
    margin:25px 0;
    color:#888;
    font-size: 2.3em;
}