/* Map action buttons are always visible - removed hide rule for small screens */

/* Profile Image Styling */
.profile-image-container {
	text-align: center;
	margin-bottom: 15px;
	width: 100%;
}

.profile-image {
	width: 200px;
	height: 200px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

/* Popup-specific profile image styling */
#alumni-map-popup .profile-image-container {
	text-align: left;
	margin-bottom: 10px;
}

#alumni-map-popup .profile-image {
	width: 150px;
	height: 150px;
	margin-bottom: 10px;
	margin-left: 0;
	margin-right: 0;
	display: block;
}

/* Responsive profile image sizing */
@media (max-width: 600px) {
	.profile-image {
		width: 150px;
		height: 150px;
	}
	
	#alumni-map-popup .profile-image {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 400px) {
	.profile-image {
		width: 120px;
		height: 120px;
	}
	
	#alumni-map-popup .profile-image {
		width: 100px;
		height: 100px;
	}
}

/* Alumni list layout improvements */
.alumni-list-container {
	width: 100% !important;
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.cumul.card-like-heading {
	width: 100% !important;
	display: block !important;
	clear: both !important;
	margin-bottom: 15px !important;
	float: none !important;
}

/* Responsive alumni info popup */
#popup-alumni-info {
	width: 100%;
	max-width: 500px;
	min-width: 220px;
	box-sizing: border-box;
	margin: 0 auto;
}

@media (max-width: 600px) {
	#popup-alumni-info {
		max-width: 90vw;
		min-width: 0;
		padding: 8px 4px;
		border-radius: 0;
	}
}

.popup-content {
	padding: 0;
}

.popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
	background: #f8f9fa;
	border-radius: 8px 8px 0 0;
}

.popup-header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: #00304e;
}

.popup-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s;
}

.popup-close:hover {
	background-color: #e9ecef;
}

.popup-body {
	padding: 20px;
	max-height: 60vh;
	overflow-y: auto;
}

/* Always make the overlay search input wide and readable */
#searchbox-overlay {
	width: 100%;
	margin: 0;
	padding: 0.25rem 0.5rem;
	box-sizing: border-box;
	font-family: "Perstare", Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
}

/* keep subtitle smaller than h2 (Search Alumni) */

@media (max-width: 992px) {
	.subtitle-label {
		font-size: 0.8rem;
	}
}


@media (max-width: 600px) {
	.subtitle-label {
		font-size: 0.7rem;
	}
}
#search-overlay {
	display: none;
}
.search-normal-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.search-normal-group h2 {
	margin: 0;
	padding: 0;
	text-align: left;
}
.search-normal-group .ui-widget.content {
	width: 100%;
	padding: 0;
	margin: 0;
}
.search-normal-group input#searchbox {
	width: 100%;
	margin: 0;
	padding: 0.25rem 0.5rem;
	box-sizing: border-box;
}
#search-overlay .search-overlay-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

/* Ensure select sections are vertically oriented */
.select-section {
	display: flex;
	flex-direction: column;
	width: 100%;
}
#search-overlay #search {
	width: 100%;
	padding: 0;
	margin: 0;
}
#search-overlay input#searchbox {
	width: 100%;
	margin: 0;
	padding: 0.25rem 0.5rem;
	box-sizing: border-box;
}

/*@charset "UTF-8";
/* CSS Document */


/* Ensure body can scroll to access content below the map */
html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Make the main content scrollable */
main#MainContent {
    position: relative;
    height: auto; /* Changed from 200vh to auto since we removed the container bg content */
    min-height: 100vh; /* Ensure it's at least full viewport height */
}

.Jumbotron {
    width: 100vw;
    height: calc(100vh - 60px);
    margin: 0;
    padding: 0;
    position: relative;
}

#map {
    display: flex;
    resize: vertical;
    width: 100%;
    height: 100%;
}

/* Map title overlay in top left corner */
.map-title-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    width:35vw;
    max-width: 420px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-title-overlay h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem !important;
    margin: 0 0 0.5rem 0;
}

.map-title-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin: 0;
}

/* Bottom navigation bar for map */
.map-bottom-nav {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 51px;
    width: 100%;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 16;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.nav-content {
    width: 100%;
    height: 100%;
    display: block;
    align-items: center;
}

/* Mobile hamburger menu - positioned relative for popup positioning */
.mobile-nav-hamburger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 25;
    display: none;
}

.hamburger-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile navigation popup - positioned relative to hamburger */
.mobile-nav-popup {
    position: absolute;
    bottom: 60px; /* Position above the hamburger button */
    left: 0;
    width: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.mobile-nav-hamburger.open .mobile-nav-popup {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Mobile navigation menu */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    gap: 10px;
}

.mobile-nav-menu .nav-button,
.mobile-nav-menu .back-to-map-btn {
    background: none;
    border: none;
    color: var(--bs-navbar-color, #333);
    font-size: 1rem !important;
    font-family: Perstare, Helvetica, Arial, sans-serif !important;
    font-feature-settings: "ss01";
    font-weight: normal !important;
    cursor: pointer;
    padding: 12px 16px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    line-height: 1;
    border-radius: 50px;
    text-align: left;
    width: 100%;
}

.mobile-nav-menu .nav-button:hover,
.mobile-nav-menu .nav-button.selected,
.mobile-nav-menu .back-to-map-btn:hover {
    background: #000;
    color: #fff !important;
    text-decoration: none !important;
}

.mobile-nav-close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 21;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-btn:hover {
    color: #000;
}

/* Desktop navigation - shown by default */
.desktop-nav {
    display: flex;
}

.map-bottom-nav .nav-button {
    background: none;
    border: none;
    color: var(--bs-navbar-color, #333);
    font-size: 1rem !important;
    font-family: Perstare, Helvetica, Arial, sans-serif !important;
    font-feature-settings: "ss01";
    font-weight: normal !important;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    line-height: 1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bottom-nav .nav-button:hover,
.map-bottom-nav .nav-button.selected {
    background: #000;
    color: #fff !important;
    text-decoration: none !important;
}

/* Back to Map button styling */
.back-to-map-btn {
    background: none !important;
    border: none;
    color: #666;
    font-size: 0.7rem !important;
    font-family: Perstare, Helvetica, Arial, sans-serif !important;
    font-feature-settings: "ss01";
    font-weight: normal !important;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
    text-decoration: none !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-map-btn:hover,
.back-to-map-btn:focus {
    color: #000 !important;
    background: none !important;
    text-decoration: none !important;
}

.map-bottom-nav span {
    color: #666;
    font-size: 14px;
}

/* Unified overlay title styling */
.overlay-subtitle {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.5rem !important;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
}

.overlay-important-text {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
}

/* Overlay close button styling */
.overlay-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
    line-height: 1;
}

.overlay-close-btn:hover,
.overlay-close-btn:focus {
    color: #000;
}

/* Ensure overlay header alignment works properly for all overlays */
.search-overlay-group > div:first-child,
.submit-info-group > div:first-child,
.map-filter-group > div:first-child {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

/* Ensure title and close button alignment in select-section */
.select-section > div:first-child {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

/* Search overlay popup styles */
#search-overlay.popup-mode {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    width:35vw;
    max-width: 420px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: block !important;
    max-height: 70vh;
    overflow-y: auto;
}

#search-overlay.popup-mode .ui-widget input {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    line-height: 1.4;
    margin: 0;
    box-sizing: border-box;
}

/* Ensure the wrapper div doesn't affect width */
#search-overlay.popup-mode .ui-widget.content {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make the search input box wider in the about section */
#searchbox-about {
    width: 100% !important;
    min-width: 270px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: "Perstare", Arial, Helvetica, sans-serif;
}

#searchbox-about::placeholder {
    font-family: "Perstare", Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
    #searchbox-about {
        min-width: 100%;
        padding: 10px 12px;
    }
}

#search-overlay.popup-mode .select-section h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Ensure select sections have consistent styling */
#search-overlay.popup-mode .select-section {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

#search-overlay.popup-mode .ifa-select {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    box-sizing: border-box;
}

/* Search results styling within search overlay */
#search-overlay.popup-mode #search-results {
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

#search-overlay.popup-mode #search-results h2 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left;
    padding: 0;
}

#search-overlay.popup-mode #alumni-info {
    text-align: left;
    padding: 0;
	padding-top: 20px !important;
}

/* Submit Info overlay popup styles */
#submit-info-overlay.popup-mode {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    max-width: 525px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: block !important;
}

#submit-info-overlay.popup-mode .px-4 {
    text-align: left;
	padding-left: 0px !important;
	font-size: 0.85rem !important;
}

#submit-info-overlay.popup-mode .featuretteEvenSmallerText {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Map Filter overlay popup styles */
#map-filter-overlay.popup-mode {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    max-width: 525px;
    min-width: 400px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: block !important;
    max-height: 70vh;
    overflow-y: auto;
}

#map-filter-overlay.popup-mode .subtitle-label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

#map-filter-overlay.popup-mode .pie-chart-section {
    width: 100%;
}

#map-filter-overlay.popup-mode #pie-chart-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 280px;
}

/* Pie chart title and dropdown styling */
#map-filter-overlay.popup-mode .pie-chart-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 15px !important;
}

#map-filter-overlay.popup-mode .pie-chart-title:hover {
    color: #007cba;
}

#map-filter-overlay.popup-mode .dropdown-triangle {
    font-size: 12px;
    color: #666;
    display: inline-block;
    transition: transform 0.2s ease;
}

#map-filter-overlay.popup-mode #pie-chart-overlay svg {
    display: block;
    margin: 0 auto;
}

/* Ensure d3-tip tooltips appear above the overlay */
.d3-tip {
    z-index: 9999 !important;
    position: absolute !important;
}

/* Additional tooltip styling for better visibility */
#map-filter-overlay.popup-mode .d3-tip {
    background: rgba(0, 0, 0, 0.9) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-family: "Perstare", Arial, Helvetica, sans-serif !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
}/* Backdrop for popup */
.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.popup-backdrop.active {
    display: block;
}

/*Mobile Responsive code*/

@media only screen and (max-width: 900px) {
		/* Mobile unified overlay title styling */
		.overlay-subtitle {
			font-size: 1.2rem;
			margin: 0 0 0.5rem 0;
		}
		
		/* Mobile overlay close button */
		.overlay-close-btn {
			font-size: 1.5rem;
			width: 25px;
			height: 25px;
		}
		
		.Jumbotron {
			width: 100vw;
			height: calc(100vh - 60px);
			margin: 0;
			padding: 0;
		}
		
		#map {
			width: 100%;
			height: 100%;
			overflow: auto;
		}
		
		.map-title-overlay {
			top: 8px;
			left: 8px;
			width: 85%;
			max-width: none;
			box-sizing: border-box;
		}
		
		.map-title-overlay h1 {
			font-size: 1.4rem !important;
			margin: 0 0 0.5rem 0;
		}
		
		.map-title-overlay p {
			font-size: 0.85rem !important;
			margin: 0;
		}
		
		/* Hide desktop navigation on mobile */
		.desktop-nav {
			display: none !important;
		}

		/* Show mobile hamburger menu */
		.mobile-nav-hamburger {
			display: block;
		}

		/* Hide desktop bottom nav completely on mobile */
		.map-bottom-nav {
			display: none;
		}

		/* Mobile nav button styling - unified for all buttons */
		.mobile-nav-menu .nav-button,
		.mobile-nav-menu .back-to-map-btn {
			width: 100% !important;
			text-align: left !important;
			padding: 15px 20px !important;
			border-bottom: 1px solid #eee;
			border-radius: 0 !important;
			font-size: 1.1rem !important;
			margin: 0 !important;
			display: block !important;
			justify-content: flex-start !important;
		}

		.mobile-nav-menu .nav-button:last-child,
		.mobile-nav-menu .back-to-map-btn:last-child {
			border-bottom: none;
		}
		
		.map-bottom-nav .nav-button {
			font-size: 1rem !important;
			padding: 6px 10px;
		}
		
		#search-overlay.popup-mode {
			top: 8px;
			left: 8px;
			width: 85%;
			max-width: none;
			padding: 20px;
			max-height: 60vh;
			box-sizing: border-box;
		}
		
		#search-overlay.popup-mode .ui-widget input {
			font-size: 0.85rem;
			margin: 0;
			padding: 6px;
			width: 100%;
			box-sizing: border-box;
		}
		
		#search-overlay.popup-mode .select-section h3 {
			font-size: 0.9rem;
		}
		
		#search-overlay.popup-mode .ifa-select {
			font-size: 0.85rem;
			padding: 6px;
			width: 100%;
			box-sizing: border-box;
		}
		
		/* Mobile search results styling */
		#search-overlay.popup-mode #search-results {
			width: 100%;
			box-sizing: border-box;
		}
		
		#search-overlay.popup-mode #search-results h2 {
			font-size: 0.9rem;
		}
		
		/* Mobile submit info overlay styling */
		#submit-info-overlay.popup-mode {
			top: 8px;
			left: 8px;
			width: 85%;
			max-width: none;
			padding: 20px;
			box-sizing: border-box;
		}
		
		#submit-info-overlay.popup-mode .featuretteEvenSmallerText {
			font-size: 0.85rem !important;
		}
		
		/* Mobile map filter overlay styling */
		#map-filter-overlay.popup-mode {
			top: 8px;
			left: 8px;
			width: 85%;
			max-width: none;
			min-width: 0;
			padding: 20px;
			max-height: 80vh;
            min-height: 50vh;
			box-sizing: border-box;
		}
		
		#map-filter-overlay.popup-mode .subtitle-label {
			font-size: 0.9rem;
		}
		
		#map-filter-overlay.popup-mode .pie-chart-title {
			font-size: 1rem;
		}
		
		#map-filter-overlay.popup-mode #pie-chart-overlay {
			min-height: 200px;
			width: 100%;
		}
		
		#map-filter-overlay.popup-mode #pie-chart-overlay svg {
			width: 100% !important;
			max-width: 240px !important;
			height: auto !important;
		}
		
		.map-bottom-nav span {
			font-size: 12px;
		}
		#popup-alumni-info {
			width: 85% !important;
			max-width: 300px !important;
			border-radius: 8px !important;
			padding: 15px !important;
			margin: 0 !important;
			box-sizing: border-box !important;
			/* Remove fixed positioning to allow JavaScript to position it near map markers */
		}
}


/* --- Custom layout for pie/categories and search panels --- */
#pie-categories-row {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}
#pie-chart, #categories-side {
	flex: 1;
	min-width: 200px;
}

#search-section {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
#search-filters, #search-results {
	display: flex;
	flex-direction: column;
	flex: 1 1 0;
	min-width: 300px;
	height: 100%;
}

@media (max-width: 992px) {
	#pie-categories-row, #search-section {
		flex-direction: column !important;
		gap: 1rem;
	}
	#pie-chart, #categories-side, #search-filters, #search-results {
		min-width: 0;
		width: 100%;
	}
}


/** Additional ACCESSIBILITY features **/

.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.hidden {
	position: absolute;
	left: -999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
button.skip-main,
a.skip-main {
	font-family: "Perstare", Arial, Helvetica, sans-serif;
	font-weight: 300;
	position: absolute;
	left: -999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: -999;
	border: none;
	cursor: pointer;
}
button.skip-main:focus,
button.skip-main:active,
a.skip-main:focus,
a.skip-main:active {
	background: #000;
	color: #fff;
	font-family: "Perstare", Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 18px;
	height: auto;
	left: 0;
	top: 10px;
	overflow: auto;
	width: auto;
	line-height: normal;
	padding: 15px 20px;
	text-transform: uppercase;
	text-decoration: none;
	z-index: 99999;
	-webkit-transition: all 300ms cubic-bezier(0.3, -0.01, 0.57, 1);
	transition: all 300ms cubic-bezier(0.3, -0.01, 0.57, 1);
	text-align: left;
	white-space: nowrap;
}
	outline: none;
}

.name {
	
    font-weight: bold !important;
    font-size: 1.2em;
	line-height: .75em;
}

#alumni-info {
	line-height: 1.2em;
}

.row {
	margin-bottom: 1rem;
}

/* Footer container and navigation spacing improvements */
footer#website-credits {
    position: relative;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    padding-top: 1rem;
    background: transparent;
    min-height: auto;
}

/*
footer#website-credits ul.nav.footer {
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.25rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    list-style: none !important;
    overflow: visible;
    box-sizing: border-box;
}

footer#website-credits ul.nav.footer:last-of-type {
    margin-bottom: 80px !important;  More space before NYU footer text 
}

footer#website-credits ul.nav.footer .nav-item {
    margin: 0.3rem 0.5rem;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
}

footer#website-credits ul.nav.footer .nav-link {
    line-height: 1.6;
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
    display: block !important;
    white-space: nowrap;
}*/
