.container {
    display: flex;
    height: 97vh; /* Set the container height to the height of the viewport */
}

.header {
    position: sticky;
    top: 0;
    background-color: #f0f0f0;
    padding: 10px;
    z-index: 1;
    font-family: Arial, sans-serif;
    font-size: 16px; /* Increased font size */
    font-weight: bold; /* Bold font weight */
    color: #333; /* Darker text color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    border: 2px solid #ccc; /* Add border */
    text-align: center; /* Center align the text */
}

.regLink {
    cursor: pointer;
    text-decoration: underline;
}

.guideLink {
   width: 100%;	
   text-align: center;
   font-family: Arial, sans-serif;
   font-size: 14px; /* Increased font size */
   text-decoration: underline;
   cursor: pointer;
   margin-top: 30px;
}

label {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  display: block;
}

/* Style for the left container */
.left-container {
    flex: 1;
    padding: 5px;
    max-height: 100%;
    overflow-y: auto;

}

/* Style for tabs */
.tabs {
   padding: 8px;
}

.tablink {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5px;
    border-radius: 5px; /* Rounded corners */
    background-color: #f0f0f0;
    cursor: pointer;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.tablink:hover {
    background-color: #ddd;
}

/* Style for the active tab */
.tablink.active {
    background-color: #ccc; /* Change background color */
    color: #333; /* Change text color */
    font-weight: bold; /* Make text bold */
}

/* Style for the right container */
.right-container {
    flex: 3;
    padding: 5px;
    border-left: 1px solid #ccc;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: auto; /* Enable horizontal scrolling if needed */
    white-space: nowrap; /* Prevent content from wrapping */
}

/* Style to ensure images fit within the container */
.right-container img {
    max-width: 100%; /* Ensure images fit within the container width */
    height: auto; /* Maintain aspect ratio */
}

.regFormWrapper {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
margin-top: 20px;
}

.center-container {
    width: 450px;
    align-items: center;
}

.registration-form label {
    display: block;
    margin-bottom: 10px;
    text-align: left; 	
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.enqInput {
  width: 100%;
  padding: 8px;
  margin-top: 15px;
  text-align: center;
}

.btn {
	margin-left: 10px;
}

.selected {
    background-color: red;
    color: white;
}

.warning_msg {
	display: none;
	color: red;
}

#thumbsUpAnimation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none; /* Initially hidden */
}

#thumbsUpAnimation img {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.enqBod {
  flex: 1;	
}

.enqHead {
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.contentBox {
  margin-right: 100%
  margin-left: 100%
  text-align: left;
  font-family: Arial, sans-serif;
   font-size: 12px;
}

.image-container {
    width: 80%;
    margin: 0 auto; /* Center the container horizontally */
    margin-top: 30px;
}

.image-container img {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure proper spacing */
}

.video-container {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center; 
}
