/* Adjust the size of the logo image */
.logo {
    width: 60px;
    height: 45px;
}

/* Style for text-based navigation links */
.text-link .nav-link {
    font-size: 22px; /* Set the font size for text links */
    color: #000000; /* Color for text links */
    padding-right: 20px;
    /* margin-left: 10px; */
    margin-right: 20px;
}

.text-link .nav-link:hover {
    color: #0056b3; /* Hover color for text links */
}

/* Style for social media icons */
.social-link .nav-link {
    font-size: 30px; /* Larger size for social media icons */
    padding-right: 15px; /* Space between icons */
    margin-left: 20px;
}

.social-link .nav-link i {
    color: #333; /* Color for social media icons */
}

.social-link .nav-link:hover i {
    color: #0056b3; /* Hover color for social media icons */
}

/* Adjust the download button */
.download-btn {
    margin-left: 20px; /* Add space before the download button */
    font-size: 16px; /* Match font size for the download button */
}

/* Ensure the navbar and the page background are the same */
.navbar {
    background-color: #f8f9fa; /* Set the desired background color for the navbar */
    /* border: 1px solid #e0e0e0;  */
}

/* Make sure there are no gaps between the navbar and the body */
body {
    margin: 0;
    padding: 0;
}

header {
    /* border-bottom: 1px solid #e0e0e0;  */
    background-color: #f8f9fa; /* Match the navbar border color */
}