html, body, #app {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

/* Side Nav Section */
#side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: whitesmoke;
    overflow-x: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

/* Top Nav Section */
.nav-links {
    display: inline;
    justify-content: flex-end;
    float: inline-end;
    margin: 5px;
}
#nav-services {
    display: inline; 
    position: relative;
    padding-bottom: 10px;
}
#services-top-container {
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: white; 
    display: none;
    width: 140px;
}

/* Logo Section */
.logo {
    display: inline-flex; 
    align-items: center;
}
#logo-pic img {
    width: 30px; 
    height: 30px; 
    padding: 0px;
    border-radius: 50%;
    margin: 0px;
}
#logo-text {
    display: inline; 
    margin: 0; 
    padding: 0;
    color: #1565C0;
    font-size: 20px;
}

/* Footer Section */
footer {
    background: linear-gradient(to bottom, #e0f7fa, #b3e5fc, #81d4fa);
    z-index: 1;
    padding: 20px;
}
.services-container {
    margin-left: 15px;
}

/* Small screens (Mobile) */
@media only screen and (max-width: 600px) {
    /* Top Nav Section */
    #top-nav {
        position: fixed;
        top: 0;
        width: calc(100% - 10px);
        margin: 5px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        z-index: 2;
    }
    .nav-links {
        display: none;
    }
    #menu {
        margin-left: 5px;
        display: inline-flex;
    }

    /* Logo Section */
    #logo-pic {
        width: 30px; 
        height: 30px; 
        padding: 0px;
        margin: 5px;
    }

    /* Footer Section */
    #quick-links {
        width: 50%;
    }
}

/* Medium screens (Tablets) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Top Nav Section */
    #top-nav {
        position: fixed;
        top: 0;
        width: calc(100% - 10px);
        margin: 5px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        z-index: 2;
    }
    .nav-links {
        display: none;
    }

    #menu {
        margin-left: 5px;
        display: inline-flex;
    }

    /* Logo Section */
    #logo-pic {
        width: 30px; 
        height: 30px; 
        padding: 0px;
        margin: 5px;
    }

    /* Footer Section */
    #quick-links {
        width: 30%;
    }
}

/* Large screens (Desktops) */
@media only screen and (min-width: 1025px) {
    /* Top Nav Section */
    #top-nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 2;
    }
    .nav-links {
        display: inline;
    }
    #menu {
        display: none;
    }

    /* Logo Section */
    #logo-pic {
        width: 30px; 
        height: 30px; 
        padding: 0px;
        margin: 5px 5px 5px 10px;
    }
    /* Footer Section */
    #quick-links {
        width: 20%;
    }
}