/* Import font Lexend */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@200;300;400;500;600;700&display=swap');

/* Reset și stiluri de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal pentru layout inline - stil Outlook/Apple */
.ce-main-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-family: 'Lexend', Arial, sans-serif;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Calendar wrapper */
.ce-calendar-wrapper {
    flex: 0 0 600px;
    font-family: 'Lexend', Arial, sans-serif;
    background: #fff;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    height: fit-content;
}

/* Container pentru evenimente */
.ce-events-container {
    flex: 1;
    min-width: 0;
    border-left: 1px solid #e9ecef;
    padding: 20px;
}

/* Header calendar cu navigare - stil modern */
.ce-calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.ce-month-nav {
    display: flex;
    gap: 10px;
}

.ce-nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 10 5px;
    
}

.ce-nav-btn:hover {
    background: #f0f0f0;
    border-color: #7DB241;
}

.ce-month-year-selector {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.ce-month-select,
.ce-year-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    width: 10rem;
}

.ce-month-select:hover,
.ce-year-select:hover {
    border-color: #7DB241;
}

.ce-month-select:focus,
.ce-year-select:focus {
    outline: none;
    border-color: #7DB241;
    box-shadow: 0 0 0 2px rgba(125, 178, 65, 0.2);
}

/* Zilele săptămânii - stil Outlook/Apple */
.ce-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.ce-weekday {
    background: #f8f9fa;
    padding: 12px 0;
    text-align: center;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    border-right: 1px solid #e9ecef;
}

.ce-weekday:last-child {
    border-right: none;
}

/* Grid calendar - stil Outlook/Apple */
.ce-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background: #fff;
}

.ce-day {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    padding: 8px;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ce-day:nth-child(7n) {
    border-right: none;
}

.ce-day:hover {
    background: #f8f9fa;
}

.ce-day-number {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.ce-day.ce-has-events .ce-day-number {
    color: #7DB241;
    font-weight: 600;
}

.ce-day-events {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.ce-event-dot {
    height: 4px;
    background: #7DB241;
    border-radius: 2px;
    margin-bottom: 1px;
    cursor: pointer;
}

.ce-day.ce-empty {
    background: transparent;
    cursor: default;
}

.ce-day.ce-empty:hover {
    background: transparent;
}

/* Evenimente viitoare - Carduri */
.ce-upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ultimele evenimente - Carduri */
.ce-latest-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ce-latest-events h3 {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #7DB241;
    padding-bottom: 10px;
}

/* Evenimente filtrate */
.ce-filtered-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ce-filter-message {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #657175;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.ce-filter-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #7DB241;
    margin-bottom: 20px;
    border-bottom: 2px solid #7DB241;
    padding-bottom: 10px;
}

.ce-filter-actions {
    margin-top: 20px;
    text-align: center;
}

.ce-clear-filter-btn {
    background: #757575;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
}

.ce-clear-filter-btn:hover {
    background: #5a5a5a;
    color: white;
    text-decoration: none;
}

/* Carduri pentru evenimente filtrate */
.ce-filtered-event-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ce-filtered-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ce-filtered-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.ce-filtered-event-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #7DB241;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.ce-filtered-event-time {
    background: #7DB241;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.ce-filtered-event-description {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #657175;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ce-filtered-event-location {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #657175;
    margin-bottom: 10px;
}

.ce-filtered-event-category {
    background: #2190A3;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
}

/* Stiluri pentru evenimentele unei zile - panoul din dreapta */
.ce-day-events-header {
    border-bottom: 2px solid #7DB241;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ce-day-events-header h3 {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin: 0 0 5px 0;
}

.ce-events-count {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.ce-day-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ce-day-event-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #7DB241;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ce-day-event-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.ce-event-time {
    flex: 0 0 80px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #7DB241;
    text-align: center;
    padding-top: 2px;
}

.ce-event-content {
    flex: 1;
}

.ce-event-content h4 {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
}

.ce-event-content .ce-event-description {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.ce-event-content .ce-event-location {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
}

.ce-event-content .ce-event-category {
    background: #7DB241;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 11px;
    display: inline-block;
}

.ce-no-events {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.ce-event-card {
    display: flex;
    background: #adadad36;
    border-radius: 21.67px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ce-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ce-event-date {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
    margin-right: 20px;
}

.ce-event-day {
    display: block;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 117%;
    color: #7DB241;
    margin-bottom: 5px;
}

.ce-event-month-year {
    display: block;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 24.49px;
    line-height: 117%;
    color: #657175;
}

.ce-event-content {
    flex: 1;
}

.ce-event-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 117%;
    color: #7DB241;
    margin-bottom: 10px;
}

.ce-event-description {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 18.06px;
    line-height: 117%;
    color: #657175;
    margin-bottom: 15px;
}

.ce-event-time {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 24.49px;
    line-height: 117%;
    color: #657175;
    margin-bottom: 10px;
}

.ce-event-location {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 18.06px;
    line-height: 117%;
    color: #657175;
    margin-bottom: 15px;
}


.ce-event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Stiluri pentru pagina de evenimente frontend */
.ce-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Modern Filter Design */
.ce-events-filters {
    background: #2190A3;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
}

.ce-events-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.ce-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.ce-filter-group {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    gap:8px;
    min-width: 200px;
    flex: 1;
}

.ce-filter-group label {
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ce-filter-group select {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    min-height: 48px;
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Forțează vizibilitatea textului selectat */
.ce-filter-group select,
.ce-filter-group select:focus,
.ce-filter-group select:hover,
.ce-filter-group select:active {
    color: #333 !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

/* Stiluri pentru textul afișat în select */
.ce-filter-group select option {
    background: white !important;
    color: #333 !important;
    padding: 10px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

/* Stiluri pentru opțiunea selectată în dropdown */

/* Stiluri pentru opțiunea hover în dropdown */
.ce-filter-group select option:hover {
    background: #f0f0f0 !important;
    color: #333 !important;
}

.ce-filter-group select option {
    background: white !important;
    color: #333 !important;
    padding: 10px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.ce-filter-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1) !important;
    color: #333 !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ce-filter-group select:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 1) !important;
    color: #333 !important;
    transform: translateY(-1px);
}

/* Stiluri suplimentare pentru vizibilitatea textului */
.ce-filter-group select:not(:focus):not(:hover) {
    color: #333 !important;
}

/* Soluție specifică pentru textul selectat în dropdown */
.ce-filter-group select option {
    background: white !important;
    color: #333 !important;
    padding: 12px 16px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    outline: none;
}


.ce-filter-group select option:hover {
    background: #f0f0f0 !important;
    color: #333 !important;
}

/* Forțează textul să fie vizibil în toate browserele */
.ce-filter-group select::-ms-value {
    color: #333 !important;
    background: transparent !important;
}

.ce-filter-group select::-webkit-input-placeholder {
    color: #333 !important;
}

.ce-filter-group select::-moz-placeholder {
    color: #333 !important;
}

/* Forțează vizibilitatea textului selectat */
.ce-filter-group select,
.ce-filter-group select:focus,
.ce-filter-group select:hover,
.ce-filter-group select:active {
    color: #333 !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

/* Stiluri pentru opțiunile din dropdown */
.ce-filter-group select option {
    background: white !important;
    color: #333 !important;
    padding: 10px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

/* Stiluri pentru opțiunea selectată */

/* Stiluri pentru dropdown-urile din calendar */
.ce-month-select,
.ce-year-select,
#ce_month,
#ce_year {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
    cursor: pointer;
    width: 10rem;
    min-height: 48px;
    line-height: 1.4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ce-month-select option,
.ce-year-select option,
#ce_month option,
#ce_year option {
    background: white !important;
    color: #333 !important;
    padding: 12px 16px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 40px;
}

.ce-month-select option:checked,
.ce-year-select option:checked,
#ce_month option:checked,
#ce_year option:checked {
    background: #7db241 !important;
    color: white !important;
    font-weight: 600;
}



.ce-filter-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    flex-basis: 100%;
}

.ce-filter-btn {
    background: linear-gradient(135deg, #7db241 0%, #6a9a36 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(125, 178, 65, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.ce-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.ce-filter-btn:hover::before {
    left: 100%;
}

.ce-filter-btn:hover {
    background: linear-gradient(135deg, #6a9a36 0%, #5a8a2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(125, 178, 65, 0.4);
}

.ce-filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(125, 178, 65, 0.3);
}

.ce-clear-btn {
    background: linear-gradient(to bottom right, #f86b6b, #eb2d08);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.ce-clear-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.ce-clear-btn:hover::before {
    left: 100%;
}

.ce-clear-btn:hover {
    background: linear-gradient(to bottom right, #f86b6b, #eb2d08);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

.ce-clear-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Filter Results Info */
.ce-results-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ce-results-info p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    text-align: center;
}

.ce-events-results {
    margin-bottom: 30px;
}

/* Updated results info to match modern filter design */
.ce-results-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ce-results-info p {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    margin: 0;
    text-align: center;
}

.ce-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.ce-event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.ce-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ce-event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ce-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ce-event-card:hover .ce-event-image img {
    transform: scale(1.05);
}

.ce-event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    color: #6c757d;
}

.ce-placeholder-icon {
    margin-bottom: 10px;
    opacity: 0.7;
}

.ce-placeholder-icon svg {
    width: 48px;
    height: 48px;
}

.ce-placeholder-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.ce-event-content {
    padding: 20px;
    position: relative;
}

.ce-event-date {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #7db241;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ce-event-date .ce-day {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.ce-event-date .ce-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

.ce-event-details {
    margin-top: 10px;
}

.ce-event-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.ce-event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.ce-event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ce-event-meta span {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.ce-event-meta i {
    margin-right: 8px;
    color: #7db241;
    width: 16px;
}

.ce-event-category {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #7db241;
    border: 1px solid #e9ecef;
}

.ce-no-events {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.ce-no-events p {
    font-size: 18px;
    margin: 0;
}

.ce-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.ce-page-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.ce-page-btn:hover {
    background: #7db241;
    color: white;
    border-color: #7db241;
}

.ce-page-btn.current {
    background: #7db241;
    color: white;
    border-color: #7db241;
}

.ce-page-dots {
    padding: 8px 4px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .ce-events-container {
        padding: 15px;
    }
    
    .ce-events-filters {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 30px;
    }
    
    .ce-filter-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ce-filter-group {
        min-width: auto;
    }
    
    .ce-filter-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .ce-filter-btn,
    .ce-clear-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .ce-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ce-event-content {
        padding: 15px;
    }
    
    .ce-event-date {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    .ce-pagination {
        flex-wrap: wrap;
    }
}

.ce-event-tag {
    background: #2190A3;
    border-radius: 6.32px;
    padding: 5px 12px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 14.45px;
    line-height: 117%;
    color: #FFFFFF;
}

.ce-event-tag:nth-child(2) {
    background: #40B2CB;
}

.ce-event-tag:nth-child(3) {
    background: #757575;
}

/* Responsive design - stil Outlook/Apple */
@media (max-width: 1024px) {
    .ce-main-container {
        flex-direction: column;
        gap: 0;
    }
    
    .ce-calendar-wrapper {
        flex: none;
        width: 100%;
    }
    
    .ce-events-container {
        border-left: none;
        border-top: 1px solid #e9ecef;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .ce-main-container {
        margin: 10px;
        padding: 0;
        border-radius: 8px;
    }
    
    .ce-calendar-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .ce-month-year-selector {
        width: 100%;
        justify-content: center;
    }
    
    .ce-month-select
    {
        flex: 1;
        max-width: 180px;
    }
    
    .ce-year-select {
        flex: 1;
        max-width: 120px;
    }
    
    .ce-weekday {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .ce-day {
        min-height: 60px;
        padding: 6px;
    }
    
    .ce-day-number {
        font-size: 14px;
    }
    
    .ce-event-dot {
        height: 3px;
    }
    
    .ce-events-container {
        padding: 15px;
    }
    
    .ce-day-events-header h3 {
        font-size: 20px;
    }
    
    .ce-day-event-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .ce-event-time {
        flex: none;
        text-align: left;
        font-size: 13px;
    }
    
    .ce-event-content h4 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ce-main-container {
        margin: 5px;
    }
    
    .ce-calendar-header {
        padding: 10px;
    }
    
    .ce-day {
        min-height: 50px;
        padding: 4px;
    }
    
    .ce-day-number {
        font-size: 12px;
    }
    
    .ce-weekday {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .ce-events-container {
        padding: 10px;
    }
    
    .ce-day-events-header h3 {
        font-size: 18px;
    }
    
    .ce-day-event-item {
        padding: 10px;
    }
}

/* Animații pentru interacțiune */
.ce-event-dot:hover {
    transform: scale(1.2);
    background: #6a9a36;
}

.ce-nav-btn:active {
    transform: scale(0.95);
}

/* Stiluri pentru zilele cu evenimente multiple */
.ce-day.ce-has-events {
    background: linear-gradient(135deg, #B3DE82 0%, #7DB241 100%);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-day.ce-has-events:hover {
    background: linear-gradient(135deg, #7DB241 0%, #6a9a36 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(125, 178, 65, 0.3);
}

.ce-day.ce-has-events .ce-day-number {
    color: white;
    font-weight: 600;
}

/* Stiluri pentru ziua selectată - stil Outlook/Apple */
.ce-day.ce-selected {
    background: #7DB241 !important;
    color: white;
}

.ce-day.ce-selected .ce-day-number {
    color: white;
    font-weight: 700;
}

.ce-day.ce-selected .ce-event-dot {
    background: white;
}

/* Indicator pentru zilele cu evenimente */
.ce-day.ce-has-events::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Stiluri pentru scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Focus styles pentru accesibilitate */
.ce-nav-btn:focus,
.ce-event-dot:focus {
    outline: 2px solid #7DB241;
    outline-offset: 2px;
}

/* Loading state - stil Outlook/Apple */
.ce-calendar-wrapper.loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.ce-calendar-wrapper.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #7DB241;
    border-radius: 50%;
    animation: ce-spin 1s linear infinite;
}

@keyframes ce-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animații pentru interacțiune */
.ce-day {
    transition: all 0.2s ease;
}

.ce-day:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ce-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Stiluri pentru navigarea calendarului */
.ce-calendar-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 0;
}

.ce-month-select:hover,
.ce-year-select:hover {
    transform: translateY(-1px);
}

.ce-day-event-item {
    animation: ce-fadeInUp 0.3s ease;
}

@keyframes ce-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DESIGN INTEGRAT - STILURI NOI ===== */

/* Titlul principal "Evenimente viitoare" */
.ce-main-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 84px;
    line-height: 144%;
    text-align: justify;
    color: #7DB241;
    margin-bottom: 30px;
}

/* Butonul "Vezi toate evenimentele" */
.ce-view-all-btn {
    background: #7DB241;
    border-radius: 17px;
    padding: 15px 30px;
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 144%;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    margin-bottom: 30px;
}

.ce-view-all-btn:hover {
    background: #6ba03a;
    color: #FFFFFF;
}

/* Calendarul cu săptămâna */
.ce-week-calendar {
    background: #7DB241;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.ce-week-days {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 144%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.ce-week-dates {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 144%;
    color: #657175;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ce-date-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #B3DE82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 300;
    font-size: 36px;
    color: #657175;
}

.ce-date-circle.active {
    background: #7DB241;
    color: #FFFFFF;
}

/* Carduri de evenimente îmbunătățite */
.ce-event-card-enhanced {
    background: white;
    border: 0.9px solid #657175;
    border-radius: 32.5px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ce-event-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #7db241;
}

.ce-event-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #7DB241;
}

.ce-event-title-enhanced {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 117%;
    letter-spacing: -0.022em;
    color: #7DB241;
    margin-bottom: 15px;
}

.ce-event-description-enhanced {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 117%;
    letter-spacing: -0.022em;
    color: #657175;
    margin-bottom: 20px;
}

.ce-event-date-enhanced {
    font-family: 'Lexend', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 117%;
    letter-spacing: -0.022em;
    color: #657175;
    margin-bottom: 20px;
}

/* Taguri de categorii îmbunătățite */
.ce-tag-enhanced {
    border-radius: 6.32px;
    padding: 5px 12px;
    font-family: 'Lexend', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 117%;
    letter-spacing: -0.022em;
    color: #FFFFFF;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.ce-tag-primary {
    background: #2190A3;
}

.ce-tag-secondary {
    background: #40B2CB;
}

.ce-tag-tertiary {
    background: #757575;
}

/* Indicatori de paginare */
.ce-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.ce-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #B3DE82;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.ce-dot.active {
    background: #7DB241;
}

.ce-dot:hover {
    background: #7DB241;
}

/* Săgeți de navigare */
.ce-nav-arrow {
    width: 20px;
    height: 20px;
    background: #7DB241;
    border: none;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s;
}

.ce-nav-arrow:hover {
    background: #6ba03a;
}

/* Modal Popup pentru evenimente */
.ce-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.ce-modal-overlay.active {
    display: flex;
}

.ce-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.ce-modal-overlay.active .ce-modal {
    transform: scale(1);
}

.ce-modal-header {
    background: linear-gradient(135deg, #7db241 0%, #6a9a36 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.ce-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.ce-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ce-modal-title {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    padding-right: 50px;
    line-height: 1.3;
}

.ce-modal-content {
    padding: 30px;
}

.ce-modal-section {
    margin-bottom: 25px;
}

.ce-modal-section:last-child {
    margin-bottom: 0;
}

.ce-modal-label {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #7db241;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.ce-modal-text {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.ce-modal-description {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #7db241;
}

.ce-modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.ce-modal-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.ce-modal-tag {
    background: #7db241;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.ce-modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.ce-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.ce-modal-meta-icon {
    width: 20px;
    height: 20px;
    color: #7db241;
    flex-shrink: 0;
}

.ce-modal-meta-text {
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Animații pentru modal */
@keyframes ce-modal-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ce-modal-overlay.active .ce-modal {
    animation: ce-modal-fade-in 0.3s ease;
}

/* Responsive pentru modal */
@media (max-width: 768px) {
    .ce-modal {
        margin: 10px;
        max-height: 95vh;
    }
    
    .ce-modal-header {
        padding: 20px;
    }
    
    .ce-modal-title {
        font-size: 24px;
        padding-right: 40px;
    }
    
    .ce-modal-content {
        padding: 20px;
    }
    
    .ce-modal-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Responsive pentru design-ul nou */
@media (max-width: 768px) {
    .ce-main-title {
        font-size: 48px;
        text-align: center;
    }
    
    .ce-view-all-btn {
        font-size: 24px;
        padding: 12px 24px;
    }
    
    .ce-event-title-enhanced {
        font-size: 28px;
    }
    
    .ce-event-description-enhanced {
        font-size: 16px;
    }
    
    .ce-event-date-enhanced {
        font-size: 20px;
    }
    
    .ce-week-days,
    .ce-week-dates {
        font-size: 24px;
    }
    
    .ce-date-circle {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}