/* ==================== */
/* MODAL FILTRE PRESTATAIRES */
/* ==================== */

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}

.modal-title.text-gradient {
    background: linear-gradient(to right, var(--primary-pink), var(--primary-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(138, 43, 226, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.category-card:hover {
    background: rgba(138, 43, 226, 0.1);
}

.category-radio:checked+.category-card {
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 0 2px var(--primary-violet);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--primary-violet);
    font-size: 1.25rem;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-violet);
}

.search-box input {
    padding-left: 3rem;
}

.location-suggestions {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.btn-timeframe {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--dark-violet);
}

.btn-check:checked+.btn-timeframe {
    background: var(--primary-violet);
    color: white;
}

.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem 1.5rem;
}