/* Filter Form Container */
.cll-filter-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Filter Inputs */
.cll-filter-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.cll-filter-form select,
.cll-filter-form input[type="text"],
.cll-filter-form input[type="number"] {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 150px;
}

/* Buttons */
.cll-filter-form button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cll-filter-form button:hover {
    background-color: #005077;
}

/* Modal Background */
#cll-more-filters-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#cll-more-filters-modal.active {
    display: flex;
}

/* Modal Form Styling */
#cll-more-filters-modal form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

#cll-more-filters-modal h3 {
    margin-top: 0;
    color: #0073aa;
    margin-bottom: 15px;
}

#cll-more-filters-modal p {
    font-weight: 500;
    margin-bottom: 8px;
}

#cll-more-filters-modal label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

#cll-more-filters-modal input[type="number"],
#cll-more-filters-modal input[type="checkbox"] {
    margin-right: 5px;
}

#cll-more-filters-modal button {
    margin-right: 10px;
    margin-top: 15px;
}

/* Results Section */
#cll-results-container {
    max-width: 800px;
    margin: 30px auto;
}

.cll-league-card {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.cll-league-card h3 {
    margin-top: 0;
    color: #0073aa;
}

.cll-league-card p {
    margin: 5px 0;
    color: #444;
}

/* Gallery Image Styling */
.cll-gallery {
    margin-top: 10px;
}

.cll-gallery img {
    margin: 5px;
    width: 80px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}
