@import url('https://fonts.googleapis.com/css?family=Lato');
* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
    margin: 0;
    overflow: hidden;
}

h4 {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    text-align: center;
    user-select: none;
}

.sidebar {
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 5px;
    z-index: 1000;
}

.sidebar ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.sidebar ul li {
    padding: 3px 0; /* Reduced padding */
}

.sidebar input,
.sidebar button {
    text-align: center;
    width: 30px; /* Reduced width */
    height: 30px; /* Reduced height */
    border-radius: 15px; /* Rounded corners */
    font-size: 14px; /* Reduced font size */
}

.sidebar li:last-of-type {
    margin-top: auto;
}

.sidebar button {
    background-color: transparent;
    border: none;
    font-size: 16px; /* Adjusted font size */
}

button {
    outline: none;
}

.sidebar label {
    display: block;
    font-size: 10px; /* Reduced font size */
    margin-bottom: 3px;
}
