#littleBigPanel {
    background-color: #1d2125;
	color: white;
	font-size: 1.4em;
	text-align: center;
	font-family: sans-serif;
    width: 18em;
    height: 100%;
}

#littleBigPanel.closed {
    display: none;
}

#littleBigPanel.opened {
    display: block;
}

#sectionTitles {
    background-color: #2b2b2b;
    text-align: start;
    display: flex;
}

.title {
    display: flex;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.6em;
    margin-right: 1em;
    width: fit-content;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.title.selected {
    border-bottom: 2px solid #20a8d8;
}

.title .icon {
    height: 1em;
    width: 1em;
    padding-right: 0.5em;
}

.title div {
    display: block;
}

#closeSection {
    margin: auto 1em auto auto;
    height: 1.5em;
    color: white;
    background-color: #2e353a;
    outline: none;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

#closeSection:active {
    background-color: #5a666e;
}