/* Filter bar */
#filter-bar-div {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 50%;
    height: 70px;/* 90px; */
    margin: auto;
    border-radius: 15px;
    border-width: 0px;
    border-color: var(--header-blue);
    padding: 10px 20px 10px;/* 25px; */
    cursor: default;
    /* background-color: #cbdfea; */
    font-size: 1.2rem;
}

legend {
    padding: 3px 10px;
    background-color: white;
    border: 2px solid var(--header-blue);
    border-radius: 10px;
}

.radio-btn-line {
    padding-top: 15px;
    display:inline-block;
    height: 100%
}

input[type='radio'] {
    cursor: pointer;
    visibility: collapse;
}

label:hover {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: var(--header-blue);
    text-decoration-thickness: 1px;
}

.active-filter {
    text-decoration: underline;
    text-decoration-color: var(--header-blue);
    text-decoration-thickness: 2px;
    font-weight: 500;
}

label {
    margin-right: 15px;
}

#filter-projects-hr {
    display: block;
    width: 80%;
    margin: auto;
}

/* Project cards */
#card-container {
    padding: 0;
}

span[name='project-name'] {
    font-size: 1.2rem;
    color: var(--header-blue);
}

span[name='project-funding-source'] {
    font-size: 1.1rem;
}

@media (max-width: 1700px) {
    #filter-bar-div {
        width: 80%;
    }
}

@media (max-width: 900px) {
    #filter-bar-div {
        flex-direction: column;
        justify-content: space-around;
        height: 200px;
    }
} 
