.cefp-container {
    max-width: 1200px;
    /*margin: 0 auto;*/
    font-family: sans-serif;
}
#cefp-type{
display:none !important;

}

@media(min-width:1000px){
.cefp-filter-bar {
    display: flex;
    flex-direction:row!important;
    gap: 10px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    align-items: center;
}
.cefp-filter-bar select, .cefp-filter-bar input{
	width:23.3% !important;
	}
	.cefp-filter-bar  button{
	width:15.5% !important;
	}
}
@media(max-width:1000px){
.cefp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    align-items: center;
}
}
.cefp-select, .cefp-date {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.cefp-btn{
    padding: 13px 29px !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    
}

.cefp-btn-primary {
    background-color: #004085;
    color: white;
}

.cefp-btn-secondary {
    background-color: #6c757d;
    color: white;
}

.cefp-grid {
    display: grid;
    gap: 20px;
    transition: opacity 0.3s ease;
}

/* Responsive Grid */
@media (min-width: 950px) {
    .cefp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 700px) and (max-width: 959px) {
    .cefp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .cefp-grid {
        grid-template-columns: 1fr;
    }
}

.cefp-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cefp-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.cefp-card-content {
    padding: 20px 10px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cefp-label {
    background: #007FDD;
    display: inline-block;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    
    margin-bottom: 20px;
    border-radius: 2px;
    width: fit-content
}

.cefp-title {
    margin: 0 0 20px 0;
    font-size: 25px !important;
    color: #333;
}

.cefp-time {
    color: #000;
    font-size: 20px!important;
    margin-bottom: 10px;
	height: 24px!important
}

.cefp-register-btn {
    margin-top:10px;
    display: block;
    text-align: center;
    background: #003d78;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
  
}
.cefp-register-btn:hover {

    color: #007FDD;
 
}
.cefp-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
}
.cefp-time.hidden {
    visibility: hidden;
    height: 27px; 
    
}
.cefp-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cefp-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.cefp-calendar-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/747/747310.png');
}

.cefp-clock-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2088/2088617.png');
}
#cefp-start-date::placeholder,
#cefp-end-date::placeholder {
    color: #999 !important;
    font-size: 14px !important;
  
    opacity: 1 !important;
}

.cefp-date {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    position: relative;
    background: white;
}

.cefp-date::-webkit-datetime-edit {
    color: transparent;
}

.cefp-date::-webkit-datetime-edit-fields-wrapper {
    display: none;
}

.cefp-date:before {
    content: attr(placeholder);
    color: #666;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background: white;
    z-index: 1;
}

/* Hide placeholder when date is selected */
.cefp-date:valid:before {
    display: none;
}

/* Show selected date */
.cefp-date:valid::-webkit-datetime-edit {
    color: #333;
}

.cefp-date:valid::-webkit-datetime-edit-fields-wrapper {
    display: block;
}


.cefp-date::-webkit-calendar-picker-indicator {
    background: transparent;
    padding: 8px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30px;
    opacity: 0.6;
}

.cefp-date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Make the entire input clickable for the calendar */
.cefp-date {
    cursor: pointer;
}
