:root{
    --main-primary-color: green;
}

div.stationWidget {
    display: flex;
    font-family: Roboto, sans-serif;
    text-decoration: black;
}

div.stationWidget div.cardStation {
    display: block;
    border-width: 3px;
    border-color: var(--main-primary-color);
    border-style: solid;
}

div.stationWidget div.cardStation > div.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-primary-color);
    color:white;
    padding: 5px 10px 5px 10px;
    height: 40px;
}
div.stationWidget div.cardStation > div.header > div.icon {
    background-color: white;
    border-radius: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.stationWidget div.cardStation > div.header > div.icon > img{
    height: 32px;
}

div.stationWidget .menu {
    cursor: pointer;
}

div.stationWidget div.content {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: start;
}

div.stationWidget div.units > div.select-units  {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

div.stationWidget div.option > div.select-units > select#select-units {
    border-radius: 5px;
    grid-column: 2;
}


/*
div.select-units > select#select-units {
    padding: 0;
    height: auto;
    margin: 0;
}*/