.topics-list-container {
    width: 80%;
    min-width: 20ch;
    margin: auto;
    /* height: 300vh; */
}

.topics-list-container h1 {
    text-align: center;
    margin-bottom: 0.5em;
}

.topics-list-container h3 {
    text-align: center;
    margin-bottom: 0.8em;
}

.topics-list-container .form-group {
    display: flex;
    align-items: center;
    margin-top: 0.6rem;
    font-size: 2rem;
}

.topics-list-container .form-group label {
    /* border: 1px solid red; */

    text-align: right;
    width: 8ch;
    margin-right: 1rem;
    color: #999;
    font-size: 0.6em;
}

.topics-list-container .list-year-input,
.topics-list-container .list-name-input {
    font-size: 1.2rem;
    padding: 0.2em;
    width: 6ch;
    border-radius: 4px;
    text-align: center;
    outline: none;
    border: 1px solid gray;
}

.topics-list-container .list-year-input:focus,
.topics-list-container .list-name-input:focus {
    border: 1px solid blue;
    background-color: aliceblue;
}

.topics-list-container .list-year-input {
    width: 6ch;
    margin-right: 1em;
}

.topics-list-container .list-name-input {
    width: 40ch;
    text-align: left;
}

.topics-list-container input.topic-input[type="text"] {
    font-size: 1.6rem;

    width: 100%;
    padding: 0.2em;
    margin-right: 1rem;

    outline: none;
    border: none;
    border-bottom: 1px solid #ccc;
}

.topics-list-container input.topic-input[type="text"]:focus {
    border-bottom: 1px solid blue;
    /* background-color: whitesmoke; */
    background-color: aliceblue;
}

/* button CSS messes up the mui autocomplete dropdown caret  */
/* .topics-list-container button {
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.4rem 0.6rem;
    margin: 8px 4px;
    color: white;
    border-style: outset;
    border-radius: 6px;
    border: 1px solid gray;
    background-color: #008cba;
}
.topics-list-container button:hover {
    background-color: #047ca3;
}
.topics-list-container button:disabled {
    background-color: #82b9cc;
} */

.topics-list-container select {
    font-size: 1.2rem;
    margin-right: 1rem;
    padding: 0.2em 0;
    border-radius: 5px;
    min-width: 10ch;
}

.topics-list-container select option {
    color: black;
    background-color: white;
}

.topics-list-container .green {
    font-weight: bold;
    background-color: springgreen;
}

.topics-list-container .red {
    font-weight: bold;
    color: white;
    background-color: red;
}

.topics-list-container .blue {
    font-weight: bold;
    color: white;
    background-color: var(--color-blue);
}

.topics-list-container .yellow {
    font-weight: bold;
    background-color: yellow;
}

.topics-list-container .fuchsia {
    font-weight: bold;
    color: white;
    background-color: fuchsia;
}

.topics-list-container .cyan {
    font-weight: bold;
    background-color: cyan;
}

.topics-list-container .teal {
    font-weight: bold;
    color: white;
    background-color: teal;
}
