@import url('styles.css');

#graphique {
    width: 90vw !important;
}

.city-selector {
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    gap: 1.5rem;
}

.city-selector button {
    width: 100%;
    background-color: rgba(245, 155, 187, 0.5);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(245, 155, 187, 1);
    border-radius: 4rem;
    color: var(--color-white);
    font-weight: bolder;
    transition: var(--transition-25);
}

.city-selector button.active {
    color: var(--dark-color);
    background-color: rgba(245, 155, 187, 1);
    transition: var(--transition-25);
}

.informations {
    height: 16rem;
    width: 90%;
    background-color: var(--light-color);
    margin-top: 2rem;
    margin-bottom: 8rem;
    border-radius: 2rem;
    
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);

    color: var(--dark-color);
}

.nb-anomalies {
    margin-top: 1rem;
    text-align: center;
}

#city {
    font-weight: bolder;
}

#nbGlobalAnomalies {
    font-size: 2rem;
    font-weight: bolder;
}

#graphique2 {
    margin: 0.5rem 1rem;
}