body {
    background-color: #1a1d20;
    /* dark navy background */
    /* disable text selection */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome, Opera, and Edge */

    /* disable zooming on multiple taps */
    touch-action: manipulation;
    /* prevent zooming on double tap */
    overflow-x: hidden;
    /* prevent horizontal scrolling */
}

.container {
    margin-top: 2%;
}

@media screen and (min-width: 768px) {
    .container {
        margin-top: 4%;
    }
}

img {
    width: 100px;
    height: 100px;
}

h1 {
    color: #7b8998;
}

p {
    color: #6c757d;
}

#todoSection {
    color: #f8f9fa !important;
    /* off white text for better contrast */
}

#todoInput {
    width: 300px;
    display: inline-block;
}

#todoList {
    max-width: 400px;
    margin: auto;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

#todoCount {
    color: #6c757d;
    font-size: small;
}

.list-group-item {
    background-color: #343a40;
    /* dark background for list items */
    color: #ffffff;
    /* white text for better contrast */
}

.list-group-item button {
    margin-left: 10px;
    /* space between todo text and delete button */
}

.list-group-item:hover {
    background-color: #495057;
    /* lighter background on hover */
}

#emojis {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#addBtn {
    &:active {
        transform: scale(0.95);
    }
}
