/* Styles pour les filtres principaux et les cartes d'annonces */
#villeSelect, .filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='gray' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='gray' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}
#villeSelect:focus, .filter-select:focus {
    border-color: #f69314;
    outline: none;
    box-shadow: 0 0 0 2px rgba(246,147,20,0.08);
}
#villeSelect option, .filter-select option {
    padding: 10px;
    font-size: 1rem;
}
.announcement-card {
    position: relative;
} 

/* Styles pour Choices.js dropdown custom */
.choices {
    width: 100%;
    margin-bottom: 0;
}
.choices__inner {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e0e0f7;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 1.08em;
    color: #5a4e7c;
    box-shadow: 0 4px 24px rgba(120, 80, 255, 0.07);
    transition: border 0.2s, box-shadow 0.2s;
}
.choices__inner:focus, .choices__inner.is-focused {
    border-color: #a084f7;
    box-shadow: 0 8px 32px rgba(120, 80, 255, 0.12);
}
.choices__list--dropdown, .choices__list[aria-expanded] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(120, 80, 255, 0.12);
    border: 1.5px solid #e0e0f7;
    margin-top: 4px;
    padding: 8px 0;
}
.choices__item--selectable {
    padding: 12px 16px;
    font-size: 1.08em;
    color: #5a4e7c;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}
.choices__item--selectable.is-highlighted, .choices__item--selectable:hover {
    background: #f3f0ff;
    color: #7c5ae0;
}
.choices__list--dropdown .choices__item--selectable {
    border-radius: 0;
}
.choices[data-type*=select-one] .choices__inner::after {
    content: '';
    display: block;
    width: 18px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8L14 2' stroke='%237c5ae0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
} 