/* Widget de recherche de tournois CueScore - style partagé */
.cs-search-wrap {
    position: relative;
    margin-bottom: 15px;
}
.cs-discipline-filters {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin: 6px 0 10px;
}
.cs-discipline-filters label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: normal;
    color: #444;
    cursor: pointer;
}
.cs-search-results {
    display: none;
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.cs-search-item {
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.cs-search-item:last-child {
    border-bottom: none;
}
.cs-search-item:hover {
    background-color: #f0f6ff;
}
.cs-search-title {
    font-weight: bold;
    font-size: 13px;
    color: #2c3e50;
}
.cs-search-dates {
    font-size: 12px;
    color: #666;
}
.cs-search-empty {
    padding: 8px 10px;
    font-size: 13px;
    color: #666;
}
