* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
}

#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.2);
    overflow-y: auto
}

#sidebar h1 {
    margin-bottom: 20px;
}

#sidebar nav ul {
    list-style-type: none;
}

#sidebar nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px 0;
}

#main-content {
    margin-left: 220px;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

.profile-pic {
    display: block;
    max-width: 100px; 
    border-radius: 50%;
    margin: 0 auto 20px;
}

.solid-highlight {
    background-color: yellow;
}

.dotted-highlight {
    border-bottom: 1px dotted black;
    text-decoration: none;
}

#menu-toggle {
    display: none;
    font-size: 40px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    cursor: pointer;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    #sidebar {
        display: none;
        width: 50%;
        position: absolute;
        z-index: 10;
        background-color: white;
    }

    #sidebar.active {
        display: block;
    }

    #menu-toggle {
        display: block;
    }

    #main-content {
        margin-left: 0;
    }
}

#igps-placeholder {
    max-height: 400px;
    max-width: 400px;
    background-color: #f0f0f0;
    justify-content: center;
}
