/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main section styles */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    color: #2980b9;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

textarea, input[type="file"] {
    margin-top: 5px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    width: 100%;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    text-align: center;
}

button:hover {
    background-color: #3498db;
}

/* Separator */
.separator {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    color: #888;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Additional section styles */
section#help, section#about, section#publications, section#contact {
    margin-top: 40px;
}

a {
    color: #2980b9;
}

a:hover {
    text-decoration: underline;
}

.image-container { position: relative; display: flex; justify-content: center; /* Centers horizontally */ align-items: center; /* Centers vertically (optional) */ height: 100vh; /* Full height of the viewport (optional) */ } 

.small-image { width: 00px; /* Adjust width as needed */ height: auto; /* Maintain aspect ratio */ }

.download-btn {

position : absolute;
top : 100px;
right: 550px;






}

#summary-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically (if needed) */
    margin: 20px; /* Optional: add some margin */
}

table {
    margin: 20px; /* Optional: add margin around the table */
    border-collapse: collapse;
    width: 50%; /* Optional: control the table width */
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

