body { 
    font-size: 19px; 
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #DDDDDD;
}

a:link {
    text-decoration: none;
    color: green;
}

a:visited {
    text-decoration: none;
    color: green;
}

a:hover {
    text-decoration: underline;
    color: green;
}

a:active {
    text-decoration: underline;
    color: green;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: flex; /* Use flexbox for layout */
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 19px;
    flex: 1; /* Make all buttons grow to fill the space equally */
    text-align: center; /* Center the text */
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
    border-bottom: 5px solid MediumSeaGreen;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
    border-bottom: 5px solid green;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
    background-color: white;
}

li {
    margin: 8px 0;
}

.divpatch {
    display: inline-block;
    zoom: 1;
    vertical-align: top;
    font-size: 19px;
    width: 800px;
    padding: 12px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.illu {
    float: right;
}

/* Style for the main container table */
.main-container {
    width: 90%;
    max-width: 1200px;  /* Adjust this value to your preferred maximum width */
    margin: 0 auto;     /* This centers the table */
    background-color: #FFFFFF;
}

/* Style for the content padding */
.content-wrapper {
    padding: 25px;
}

/* Optional: Add responsive behavior */
@media screen and (max-width: 1300px) {
    .main-container {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .main-container {
        width: 100%;
    }
}

/* <style> */
#langSwitch {
    background-color: green;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
  }

#langSwitch:hover {
    background-color: #45a049;
  }


.lang-switch {
    position: sticky;
    top: 15px;
    float: right;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: -50px; /* Prevent the switch from pushing down content */
    display: inline-flex;
    background-color: rgba(240, 240, 240, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 2px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.lang-option {
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    color: #666;
}

.lang-option:hover {
    color: #333;
}

.lang-option.active {
    background-color: green;
    color: white;
}

/* Add specific style for the publication iframe */
#publication-frame {
    width: 100%;
    height: 800px;
    border: none;
    background-color: white;
}

/* Ensure the publication content has white background */
#Publication {
    background-color: white;
}
