@charset "UTF-8";



/* General Styles */
body {
    font-family: "calibri", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

/* Header */
header {
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
	padding-bottom:50px;
}

.header-image {
	width:100%;
}

div.logout {position:absolute;
right:10px;
top:10px;
z-index: 10;
background: #fff;
border:#ccc solid 2px ;
border-radius:6px;}

div.logout:hover {border:#ff0000 solid 2px;}

/* Main Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.maincontent {
	height: 100vh;
	min-height: 100% !important;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	
}
.sidebar-cta { 
	 
    height: 90vh;
	min-width:450px;
    min-height: 100% !important;
	 padding: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   
    align-items: center;
	justify-content: center;
box-sizing: border-box;}

.sidebar-cta .cta {
    background-color: #624C9A;
    border-radius: 8px;
    position: relative;
	  width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
	padding:30px;
	margin-top:0px;
	margin-bottom: 0px;
}


/* Responsive Design for Mobile */
@media (max-width: 1440px) {
    .container {
        flex-direction: column;
    }
    .maincontent, .sidebar-cta {
        width: 100%;
        margin-bottom: 20px;
    }
}

 .sidebar-cta .cta .dot {
    background-color: #fff500;
    background: linear-gradient(90deg,hsla(0,0%,100%,0),rgba(9,9,121,0) 50%,#fff500 0,#fff500);
    border-radius: 0 100% 100% 0;
    display: inline-block;
    height: 28px;
    left: -14px;
    position: absolute;
    top: 46px;
    width: 28px;
}

.slido {padding:0px;width:100%;height:100%;} 

/* Login Section */
.login-section {
    flex: 1;
    max-width: 30%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	min-width: 270px;
	margin:auto;
}

.login-section input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #000;
    border-radius: 4px;
    box-sizing: border-box;
	
}

.btn{
    width: 100%;
    padding: 10px;
    background-color: #624C9A;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #B983B9;
}

/* Conference Info */
.conference-info {
    flex: 1;
    padding: 20px;
    max-width: 50%;
	margin:auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    width: 100vw;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-popup button {
    background: white;
    color: black;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:focus {
    outline: 3px solid red; /* Red border for clear visibility */
       box-shadow: 0 0 5px red; /* Optional glow effect */
}

button:hover {
    outline: 3px solid red; /* Red border for clear visibility */
       box-shadow: 0 0 5px red; /* Optional glow effect */
}

input:focus, textarea:focus, select:focus {
    outline: 3px solid red; /* Red focus outline */
    box-shadow: 0 0 5px red; /* Optional glow effect */
}

.button .btn .btn-lg .btn-primary .btn-sign-in {color:#614D98;}

/*  the tab */
    .tabs  [aria-selected="true"] {
        overflow: hidden;
        border: 1px solid #ccc;
        background-color: #f1f1f1;
		
		
    }

    /* Style the buttons that are used to open the tab content */
    button  {
        background-color: inherit;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 10px;
        transition: 0.3s;
	font-family: "calibri", sans-serif;
	font-weight:700;
		margin:10px;
		border-radius: 5px;
		width:180px;
		margin-right:20px;
		font-size:18px;
   }

    /* Change background color of buttons on hover */
    .tabs button:hover {
        background-color: #ddd;
    }

    /* Create an active/current tablink class 
    .tabs button.active{
        background-color: #ccc;
	font-family: Futura Maxi CG;
	font-weight: 500;
		padding: 14px 16px;
		margin:1px;
		border-radius: 5px;
		transition: 0.3s;
    }*/
		
		.tabpanel {
    border: 1px solid #ccc;
    padding: 20px;
		height:80vh;
			min-height:90% !important;
		margin:0px;
    		border-top-left-radius: 0;
			border-top-right-radius: 0;
			border-bottom-left-radius: 5px;
			border-bottom-right-radius: 5px;
			overflow:scroll;
			
}

    /* Style the tab content */
    .tabcontent {
        display: none;
        padding: 6px 12px;
        border: 1px solid #ccc;
       
	
    }

    .tabcontent {
        animation: fadeEffect 1s; /* Fading effect takes 1 second */
    }
.tabmaincontent {
	height:100%;
	width:100%;
	padding-bottom:50px;
}

.tabs {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
	padding: 15px 20px;
	border-bottom: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-right: 0px;
	font-size:18px;
}



.accordion {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
		
    .accordion-item {
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-header {
        background: #624C9A;
        color: #fff;
        padding: 15px;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        width: 100%;
        text-align: left;
		margin:auto;
    }

    .accordion-header:focus {
        outline: 2px solid #ff0000;
    }

    .accordion-header:hover {
        background: #B983B9;
    }

    .accordion-header .icon {
        font-size: 18px;
        transition: transform 0.3s;
    }

    .accordion-header[aria-expanded="true"] .icon {
        transform: rotate(180deg);
    }

    .accordion-content {
        display: none;
        padding: 15px;
        font-size: 18px;
        background: #fff;
        border-top: 1px solid #ccc;
    }

    .accordion-content[aria-hidden="false"] {
		display: block;}

h1 {text-align: center;font-weight: 700;}
html,body,h1,h2,h3,h4,h5,h6 {font-family: "calibri", sans-serif;}

.search-container {
        margin-bottom: 20px;
        margin-left:20px;
	margin-top: 20px;
    }

    .search-input {
        width: 500px;
        padding: 10px;
        font-size: 18px;
        border: 1px solid #ccc;
        border-radius: 5px;
		
    }

    /* Card Styles */
    .card {
        display: flex;
        align-items: center;
        background: #ffffff;
        border: 1px solid #ddd;
        border-radius: 8px;
        width: 90%;
        max-width: 100%;
        padding: 15px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-bottom: 20px;
        margin-left:auto;
        margin-right:auto;
    }

    .card:hover {
        transform: scale(1.02);
    }

 .card:focus {
        outline: 2px solid #ff0000;
    }

    .card.expanded .card-image {
        width: 100px;
        height: 100px;
        transition: width 0.3s ease, height 0.3s ease;
    }

    .card-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        transition: width 0.3s ease, height 0.3s ease;
    }

    .card-details {
        flex: 1;
        max-width:100%;	
    }
    
    .card.expanded .card-details {
        flex: 1;
        max-width:100%;		
    }

    .card-title {
        font-size: 20px;
        font-weight: bold;
        margin: 10px;
        width:100%;
    }

    .card-subtitle {
        font-style: italic;
        color: #555;
        margin: 10px;
        width:100%;
    }

    .card-description {
        display: none;
        padding-top: 10px;
        padding-left:10px;
        font-size: 18px;
        color: #555;
        
    }

    .card.expanded .card-description {
        display: block;
    }

.session-video {
        width: 100%;
        height: 100%;
        border-radius: 5px;
        overflow: hidden;
        margin-top: 10px;
    }




/* Unified CSS - Enhancing Accessibility & Layout */

/* Ensure full height for tabbed content */


/* Auto-scaling video inside the tab */
.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe, .video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Adjust Slido widget for full height on the right */
.slido-container {
    height: 100vh;
    overflow: hidden;
}

.slido-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Allow the title to be toggled between header or below it */
.title-container {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

/* Add flexibility for header title placement */
.header-title-hidden {
    display: none;
}

.header-title-visible {
    display: block;
}

/* Ensures tabs are keyboard accessible and visually clear */
.tabs button:focus {
    outline: 3px solid red;
    box-shadow: 0 0 5px red;
}

/* Adjustments for a clean and responsive tab layout */
.tabs {
    display: flex;
    justify-content: space-around;
    padding: 15px;
}

.tab-button {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background-color: #f1f1f1;
}

.tab-button[aria-selected="true"] {
    background-color: #007BFF;
    color: white;
}

/* Unified container layout */
.main-container {
    display: flex;
    height: 100vh;
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 10px;
}

/* Admin Panel Styling Enhancements */
.admin-container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure buttons are clearly visible and accessible */
button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid red;
    box-shadow: 0 0 5px red;
}

/* Improved responsiveness */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        height: auto;
    }
    .slido-container {
        height: auto;
    }
}

th {
	
	padding-top: 12px;
  padding-bottom: 12px;
	padding-left:20px;
	
  text-align: left;
  background-color: #624c94;
  color: white;
	
	
}

td {
	padding-left:20px;
}

table {
	
	width:100%;
	border-spacing: 0;
  border-collapse: separate;
  border-radius: 10px;
  border: 1px solid #cccccc;
}

.teams {display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        background-color: #6264a7;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
		width:250px;}
