/* Extracted from main.css: list-of-lists sidebar (src/Lists.hx) */

div.list-button-container {
    display: flex;
    align-items: center;
}

div.list-of-lists {
    padding-left: 70px;
    padding-right: 32px;
    padding-top: 0px;
    padding-bottom: 8px;
}

div.array-of-lists {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    background-color: #ECECF2;
    /* background-color: GainsBoro; */
    /* background-color: AliceBlue; */
}

@media only screen and (max-width: 1024px) {
    div.list-of-lists {
        display: none;
    }
}

@media only screen and (min-width:1025px) {
    div.array-of-lists {
        display: none;
    }
}

img.radio {
    height: 32px;
    margin-left: 12px;
    margin-right: 12px;
}

button.list {
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 4px;
    outline: none;
	font-weight: bold;
    color: white;
    background-color: mediumblue;
    border: 1px solid slategrey;
    user-select: none;
    -user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

button.hidden-list {
    display: none;
}

button.dashboard-list {
    transform: skewX(-15deg);
    /*z-index: 0;  translateZ(-100)*/
}

@media only screen and (max-width: 1024px) {
    button.list {
        width: 75%;
        padding-top: 8px;
        padding-bottom: 8px;
        /* background-color: ghostwhite; */
        background-color: white;
        color: black;
    }

    button.list:active {
        background-color: deepskyblue;
    }
}

button.hover-list {
    box-shadow: 1px 1px 0px 0px teal, -1px -1px 0px 0px teal;
}

@media only screen and (min-width:1025px) {
    button.list.selected-list {
        border: 3px solid gold;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

div.hidden-container {
    display: none;
}

