.acf-multidate-wrapper {
    margin: 10px 0;
}

.acf-multidate-picker {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
	/*visibility: hidden !important;*/
	
}

/* Calendrier Flatpickr */
.acf-multidate-calendar {
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.flatpickr-calendar {
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

.flatpickr-months .flatpickr-month {
    background-color: #5073aa;
    color: white;
}

.flatpickr-day.selected {
    background-color: #5073aa;
    border-color: #5073aa;
    color: white;
}

.flatpickr-day.selected:hover {
    background-color: #2c3e50;
}

.flatpickr-day:hover {
    background-color: #e3f2fd;
}

/* Liste des dates */
.acf-multidate-selected {
    margin-top: 15px;
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
	display: none;
}

.acf-multidate-selected label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 13px;
    color: #333;
}

.acf-multidate-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.acf-multidate-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 13px;
}

.acf-multidate-list li.empty {
    font-style: italic;
    color: #999;
}

.acf-multidate-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.2s;
}

.acf-multidate-remove:hover {
    color: #a02830;
}
