/* Banner Styling */
.conference-banner {
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-banner h1 {
    font-size: 3rem;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* Footer Image Styling */
.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%; /* Adjust as needed */
}

.footer-image img {
    height: auto;
    text-align: center;
}

/* Conference Link Styling */
.conference-link a {
    color: #007bff;
    text-decoration: underline;
}

.conference-link a:hover {
    color: #0056b3;
    text-decoration: none;
}

.welcome-text {
    max-width: 50%;    /* Limit the width for readability */
    margin: 0 auto;      /* Center the welcome-text section on the page */
    padding: 0 15px;     /* Add padding for smaller screens */
    /* text-align: center;  /* Center-align the content */
}

.welcome-text p {
    margin: 0 auto;      /* Center each <p> within welcome-text */
    margin-bottom: 20px;
    text-align: left;    /* Left-align the text within each <p> for readability */
    line-height: 1.75rem;
}

.navbar-brand {
    line-height: 1.5; /* Match the line height of nav links */
    display: flex; /* Ensures proper vertical centering */
    align-items: center; /* Centers text within the navbar */
    padding-bottom: 0px;
    margin-bottom: 20px;
}

th[role=columnheader]:not(.no-sort) {
	cursor: pointer;
}
/* tablesort */
th[role=columnheader]:not(.no-sort):after {
	content: '';
	float: right;
	margin-top: 7px;
	border-width: 0 4px 4px;
	border-style: solid;
	border-color: #404040 transparent;
	visibility: hidden;
	opacity: 0;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

th[aria-sort=ascending]:not(.no-sort):after {
	border-bottom: none;
	border-width: 4px 4px 0;
}

th[aria-sort]:not(.no-sort):after {
	visibility: visible;
	opacity: 0.4;
}

th[role=columnheader]:not(.no-sort):hover:after {
	visibility: visible;
	opacity: 1;
}

.highlight {
    background-color: #d4edda; /* Light green (Bootstrap success color) */
    transition: background-color 1s ease-in-out;
}
