html {
    scroll-padding-top: 70px; /* Adjust this value to the height of the sticky bar */
}
body {
	background: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 20vh;
	margin: 0;
}
.content-container {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	width: 100%;
	margin-bottom: 10px;
}
.dropdown-menu {
	border: 1px solid #ddd;
	background: #fff;
	max-height: 250px;
	overflow-y: auto;
	position: absolute;
	z-index: 1000;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow for better visibility */
	z-index: 1050; /* Ensure it is above other elements */
}
#dropdownMenuField {
	top: 35px; /* Adjust the top position to place it directly under the input field */
}

#dropdownMenuCollege {
	top: 35px; /* Adjust the top position to place it directly under the input field */
	left: 210px; /* Adjust the left position to align it with the college input field */
}
.dropdown-item {
	padding: 8px 12px;
	cursor: pointer;
}
.dropdown-item:hover {
	background: #f8f9fa;
}
#dynamicHeading {
	color: #000000;
}
#dynamicDegree {
	color: #8B0000;
}
h1, h2 {
	padding: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	text-align: center;
}
h3 {
	padding: 10px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 26px;
}
h4 {
	padding: 10px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: bold;
}
h6 {
	padding: 10px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}
p {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
}
ul {
	list-style-type: disc;
	padding-left: 50px;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
}
smallnoteform {
	padding-left: 75px;
	font-size: 13px;
}
smallnote {
	font-size: 13px;
}
.sampleprofile {
	text-align: center;
}
<!--
.scoreandanalysis {
	font-size: 14px;
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
}
-->
.btn-full-width {
	width: 100%;
}
.btn-primary {
	white-space: nowrap;
	background-color: #0a66c2;
}
.sticky-bar {
	position: -webkit-sticky; /* For Safari */
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #ffffff;
	padding: 5px 10px; /* Reduce padding to decrease height */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	margin-bottom: 5px;
}
.search-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: 20px;
	margin-left: 10px;
	position: relative; /* Ensure the search container is positioned relative */
}
.search-input {
	flex: 1;
	padding: 5px;
	padding-left: 30px; /* Add space for the icon */
	margin-right: 0px; /* moves search fields and button further apart */
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 200px;
	background-color: #f0f4fc; /* Background color */
	background-image: url('./magnifyingglass.png'); /* Add icon */
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: 5px center; /* Position the icon */
}
.search-button {
	height: 30px; /* Match the reduced height of the form */
	padding: 3px 10px; /* Adjust padding to match reduced height */
}
.nav-links {
	display: flex;
	align-items: center;
}
.nav-link {
	display: flex; /* Make the link a flex container */
	align-items: center;
	text-decoration: none; /* Remove default underline style */
	color: inherit; /* Inherit color from parent */
	margin-left: 10px; /* Keep spacing consistent with nav-item */
	padding: 5px; /* Add padding to increase the clickable area */
	border-radius: 4px; /* Add border radius for better visuals */
}
.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
}
.nav-icon {
	width: 24px;
	height: 24px;
}

.desktop-only-br {
    display: inline;
}

/* Default: Hide mobile dropdown */
.mobile-dropdown {
    display: none;
}
/* Mobile styles */
@media (max-width: 767px) {
    /* Hide the regular nav items on mobile */
    .nav-links {
        display: none;
    }
	
	smallnoteform {
        display: none;
    }

    /* Show the mobile dropdown on mobile */
    .mobile-dropdown {
        display: block;
    }
	
	.desktop-only-br {
        display: none;
    }
	
	#collegeSearchInput,
    #dropdownMenuCollege {
        display: none;
    }
	
	.content-container {
        padding: 10px;
    }
	.popover {
        width: 90% !important; /* Make the popover take up 90% of the screen width */
        max-width: 90% !important; /* Ensure it doesn't exceed 90% of the screen width */
    }
	
	html {
        scroll-padding-top: 50px; /* Adjusted value for mobile devices */
    }
	
	.dropdown-menu {
		max-width: 250px;
	}
	
	.search-input {
        width: 100%; /* Take up full width on mobile */
        max-width: 150px; /* Adjust as needed to ensure it fits on one line */
    }

    .btn-primary {
        width: auto; /* Ensure the button stays on one line */
    }
	
	.example-profile-table tr {
		height: 400px !important; /* Fixed height for the table row */
	}

	.example-profile-table td {
		height: 400px !important; 
	}
	
}

.nav-text {
	font-size: 14px;
	margin-top: 3px;
	color: inherit; /* Inherit color to prevent blue text on hover */
}
.nav-link:hover {
	background-color: #e0e0e0; /* Change background color on hover */
	transition: background-color 0.3s; /* Smooth transition */
}
.nav-link:link, .nav-link:visited {
	color: inherit; /* Prevent color change on link states */
}
.container {
	display: flex;
	align-items: flex-start;
}
.form-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.form-input {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #f0f4fc;
	width: 200px;
}
.form-select {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #f0f4fc;
	width: auto;
}
.form-button {
	padding: 6px 12px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.form-button:hover {
	background-color: #0056b3;
}
table {
	width: 100%;
	border-collapse: collapse;
}

.example-profile-table tr {
    height: 600px;
}

.example-profile-table td {
    height: 600px;
    width: 33.33%;
    border: 1px solid #ddd; /* Keep cell borders if needed */
    vertical-align: top;
    padding: 0; /* Remove padding to avoid overflow issues */
    box-sizing: border-box;
    overflow: hidden; /* Ensure the overflow setting of the divs works correctly */
}

/* Styles for the second table (padded with clickable headers) */
.ordinary-table th, .ordinary-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.ordinary-table th {
    cursor: pointer;
}

.cell-content {
	height: 100%;
	padding: 10px; /* Add padding inside the scrollable area */
	box-sizing: border-box;
	overflow-y: auto; /* Adds scrollbar if content overflows */
}
.imgcenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%; /* Ensures the image width does not exceed its container */
    height: auto;    /* Maintains the aspect ratio of the image */
}

@keyframes flash-purple {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: #0a66c2;
    }
}

/* This class will be applied to the div when the anchor is clicked */
.flash-purple {
    animation: flash-purple 1s ease-out;
}

.popover {
    z-index: 9999; /* Ensure the popover is on top of other elements */
    max-width: 600px; /* Make the popover wider */
    width: 600px; /* Set the popover width explicitly */
	background-color: #f8f9fa;
	border-radius: 10px; /* Rounded corners */
	border: 1px solid #000000;
}

.popover-body {
    white-space: normal; /* Allow the content to wrap */
	border-radius: 10px;
	background-color: #f8f9fa;
}

.popover-arrow {
    z-index: 9999; /* Ensure the arrow is also on top of other elements */
}

.menu-icon {
    display: inline-block;
    width: 20px;  /* Set the width of the icon */
    height: 18px; /* Adjust the height to space out the lines */
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px; /* Set the height of the lines */
    background-color: #000000; /* Black color for the lines */
    margin: 5px 0; /* Space between the lines */
}

.btn-secondary.dropdown-toggle::after {
    display: none; /* Hide the default dropdown arrow */
}

.btn-secondary {
    padding: 5px; /* Reduce padding to make the button smaller */
    background-color: transparent;  /* Make the button background transparent */
    border: none; /* Remove border */
}

.image-table {
    width: 100%;
    border-collapse: collapse;
}

.image-table td {
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.imgcentertable {
    width: 75%;
    height: auto;
}

.progress-marker {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}


.marker-1 {
    top: -20px; /* Position above the bar */
    left: calc(50% - 1px); /* Adjusted to align with the line */
    transform: translateX(-50%); /* Center the arrow */
    border-bottom: 10px solid black; /* Arrow pointing down */
}

.marker-1-text {
    position: absolute;
    top: -40px; /* Position the text above the arrow */
    left: calc(50% - 20px); /* Adjusted to align with the arrow */
    transform: translateX(-50%); /* Center the text */
    font-size: 12px;
    color: black;
    font-weight: bold;
    white-space: nowrap; /* Ensure the text stays on one line */
}

.marker-2 {
    bottom: -20px; /* Position below the bar */
    left: calc(50% - 1px); /* Adjusted to align with the line */
    transform: translateX(-50%); /* Center the arrow */
    border-top: 10px solid black; /* Arrow pointing up */
}

.marker-2-text {
    position: absolute;
    bottom: -40px; /* Position the text below the arrow */
    left: calc(50% - 20px); /* Adjusted to align with the arrow */
    transform: translateX(-50%); /* Center the text */
    font-size: 12px;
    color: black;
    font-weight: bold;
    white-space: nowrap; /* Ensure the text stays on one line */
}

.progress-marker-line {
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: black;
    left: calc(50% - 1px); /* Adjusted to align with the center */
    z-index: 2; /* Ensure the line is visible above the progress bar */
}

/* Add padding to the container to make room for the marker text */
.progress-container {
    padding-top: 50px; /* Adjust based on the height of marker-1-text */
    padding-bottom: 50px; /* Adjust based on the height of marker-2-text */
    position: relative; /* Ensure absolute positioning works within this container */
}

/* The overlay effect (hidden by default) */
.overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    z-index: 1000; /* Sit on top */
    justify-content: center;
    align-items: center;
}

/* The content inside the overlay */
.overlay-content {
    position: relative;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The image inside the overlay */
.overlay-content img {
    max-width: 100%;
    max-height: 100%;
}

/* The close button */
.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    width: 100%; /* Ensure the container takes up the full width */
}

#pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
}

#prevPage, #nextPage {
    margin: 0 10px;
}

.rows-per-page-selector {
    margin-bottom: 10px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

#rowsPerPageSelect {
    margin-left: 5px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

