/* General styling reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, Arial, Helvetica, sans-serif;
}

/* Body styles */
body {
    width: 100%;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    background-color: #3970c8;
    padding: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1%;
}

.company-name{
    text-decoration: none;
    align-items: center;
    display: flex;
    font-size: 2rem; /* Increased font size */
    font-weight: 700;
}

/* Thumbnail styles for headshots */
.thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 2%;
    background-color: transparent; /* Remove white background */
}

/* Topbar configurations */
.topbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Right-links configurations using flexbox */
.right-links {
    display: flex;
    align-items: center;
}

.right-links a {
    background-color: #ffffff;
    border-radius: 10px; /* Rounded edges for right links background */
    white-space: nowrap; /* Prevent text wrapping */
    text-decoration: none;
    color: #000000;
    padding: 10px 15px;
}

.right-links a:hover, .footer-box a:hover {
    background-color: #525257;
    color: #ffffff;
}

/* Footer styles */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3970c8;
    padding: 20px 0;
    text-align: center;
}

.footer-box {
    flex: 1;
}

.footer-box a {
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #ffffff;
}

/* Menu icon */
.menu-icon {
    display: none;
    color: #ffffff;
    cursor: pointer;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .topbar .right-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #3970c8;
        margin-top: 3%;
        z-index: 1000;
    }

    .menu-icon {
        display: block;
        position: absolute;
        right: 30px;
        z-index: 1002;
    }

    .topbar .right-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        width: 100%;
        background-color: #3970c8;
    }

    .topbar .right-links {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid #ffffff;
    }
}
