
     
		/* Add your custom CSS styles here */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
		
	
        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1rem;
        }
		
        main {
            padding: 2rem;
        }
		
        h1, h2 {
            margin-bottom: 1rem;
        }
		
		.is-flex {
			display: flex;
			justify-content: center;
			align-items: center;
			position: fixed;
			bottom: 2;
			left: 50%;
			transform: translateX(-50%);
			width: 100%;
		}

		.button-container{
			bottom: 0; /* Stick to the bottom of the viewport */
			left: 50%; /* Center horizontally */
			transform: translateX(0%); /* Adjust for centering */
			width: 100%; /* Full width to ensure proper centering */
			text-align: center; /* Center content horizontally */
		}
		
		
		.button {
			background-color: #00BFFF; /* Electric blue color */
			color: #ffffff; /* Change text color to white for contrast */
			border: none; /* Remove any borders */
			padding: 10px 20px; /* Adjust padding */
			text-align: center; /* Center text */
			text-decoration: none; /* Remove underline from links */
			border-radius: 17px; /* Add rounded corners */
			font-size: 16px; /* Adjust font size */
			display: inline-block; /* Ensure it fits the content */
			margin: 10px; /* Optional: Add margin */
			cursor: pointer; /* Show pointer cursor on hover */
		}
		
        .photo-panel {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        .photo {
            max-width: 200px;
            max-height: 200px;
            border: 1px solid #ddd;
            border-radius: 1px;
        }
		
		.photo_2 {
            max-width: 700px;
            max-height: 700px;
            border: 1px solid #ddd;
            border-radius: 1px;
        }
		
		.research-entry-title {
        text-align: center;
        }
		
		.page-divider{
			display:block;
			width:50 %;
			margin-left: auto;
			margin-right: auto;
			border-top: 2px ;	
		}
		
        .organizers {
            margin-top: 2rem;
        }
        .tab {
            display: flex;
			gap:10px;
            margin: 0 10px;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
        }
        .tab.active {
            background-color: #f0f0f0;
        }
		
		.tabs.is-toggle li.is-active a {
		background-color: grey;
		color: white; /* You can set the text color to white or any other color that fits well with the grey background */
		}

		.tabs.is-toggle li:not(.is-active) a {
		background-color: white; /* Set the background color for inactive tabs */
		color: black; /* Set the text color for inactive tabs */
		}

		
		.my-tabs {
			display: flex;
			justify-content: space-between; /* This will distribute the tabs evenly across the line */
			gap: 10px;
		}
		
		

		.year-content {
			font-size: 18px; /* Adjust the font size as needed */
			max-width: 800px; /* Set a maximum width for the content */
			margin: 0 auto; /* Center the content horizontally */
			text-align: justify;
		}
		
		/* Style the table */
		.year-content table {
			width: 100%;
			border-collapse: collapse; /* Merge table borders for equal spacing */
			margin-top: 1rem;
		}

		.year-content th,
		.year-content td {
			border: 1px solid #ddd; /* Add borders to table cells */
			padding: 10px; /* Add padding to table cells */
			text-align: left; /* Left-align content inside table cells */
		}

		.year-content th {
			background-color: #f0f0f0; /* Add a background color to header cells */
		}
		
		
		.collage {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            background-color: #f2f2f2;
        }

        .collage img {
            width: 30%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .collage img:hover {
            transform: scale(1.05);
        }

        /* Adjustments for smaller screens */
        @media (max-width: 768px) {
            .collage img {
                width: 45%;
            }
        }

        @media (max-width: 480px) {
            .collage img {
                width: 100%;
            }
        }
