body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
}

.filters {
    display: flex;
    margin-bottom: 20px;
    gap: 25px;
    padding: 15px;
    border-radius: 8px;
    width: fit-content;
}

.filters select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1;
}

.centers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.center-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 200px;
}


.center-card p {
    margin: 5px 0;
    line-height: 1.6;
}

.loading {
    text-align: center;
    font-size: 18px;
    color: #777;
}

label{
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
}

.campos-mult{
    display: flex;
    flex-direction: column;
}

.checkbox-dropdown {
    position: relative;
    background: #fff;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    user-select: none;
    border: 1px solid #ccc;
    flex: 1;
}

.checkbox-dropdown.active .checkbox-list {
    display: block;
}

.checkbox-dropdown .selected-items {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkbox-dropdown .checkbox-list {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.checkbox-dropdown .checkbox-list label {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
}

.checkbox-dropdown .checkbox-list label:hover {
    background-color: #f0f0f0;
}

.checkbox-dropdown .checkbox-list input {
    margin-right: 10px;
}