

/* Heading styles */
h1, h2, h3 {
    margin: 0.5em 0; /* Add space between headings */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Cool shadow effect */
    font-weight: bold;
    text-align: center;
}

/* h1-specific styles */
h1 {
    align-content: center;
    font-size: 2.5em;
    background: linear-gradient(135deg, #ffd700, #ff8c00); /* Golden gradient for text */
    -webkit-background-clip: text; /* Clip gradient to text */
    -webkit-text-fill-color: transparent; /* Make background visible */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Cool shadow effect for text */
    font-weight: bold;
    padding: 20px 40px; /* Add padding for the box */
    border: 3px solid rgba(255, 255, 255, 0.8); /* Stylish semi-transparent border */
    border-radius: 15px; /* Rounded corners */
    display: inline-block; /* Ensure the box wraps tightly around the text */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for the box */
    background-color: rgba(255, 255, 255, 0.1); /* Slightly translucent background */
    backdrop-filter: blur(5px); /* Blurred effect for the background */
    margin: 20px auto;
}

/* h2-specific styles */
h2 {
    font-size: 1.5em;
    color: #ffeb3b; /* Bright yellow */
}

/* h3-specific styles */
h3 {
    font-size: 1.0em;
    color: #03dac5; /* Cool cyan */
}


/* Table styles */
table {
    width: 80%;
    max-width: 800px;
    margin: 20px auto; /* Center the table */
    border-collapse: collapse; /* Remove spacing between cells */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    border-radius: 10px;
    overflow: hidden;
    text-align: left; /* Align text in table cells */
    color: #4a4a4a; /* Dark gray font color for table */
}

/* Table header */
table th {
    background: #2a5298;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center; /* Center the table header text */
}

/* Table rows */
table td {
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Light border for rows */
}

/* Alternate row colors */
table tr:nth-child(even) {
    background: #f9f9f9;
}

table tr:nth-child(odd) {
    background: #fff;
}

/* Highlight on hover */
table tr:hover {
    background: rgba(100, 149, 237, 0.2); /* Light blue hover effect */
}

/* Style for the last row (if any footer rows are used) */
table tfoot td {
    background: #2a5298;
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Einfache CSS-Stile zur Gestaltung der Tabelle 
table {
    width: 50%;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}
*/

* Style for the link */
.hover-link {
    position: relative;
    text-decoration: none;
    color: blue;
    cursor: pointer;
}

/* Style for the hover frame */
.hover-frame {
    display: none;
    position: fixed;
    top: 25px;
    left: 20px;
    width: 600px;
    height: 400px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    z-index: 1000;
    overflow: hidden;
}

/* Hover effect to show the frame */
.hover-link:hover .hover-frame {
    display: block;
}

/* Style the iframe inside the hover frame */
.hover-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}



/* Set the body background */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /*height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; */

    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Gradient background */
    background-size: 400% 400%; /* Create a dynamic gradient effect */
    animation: gradientBackground 15s ease infinite;
    color: white; /* Default text color for the page */
}

/* Add an animation for the gradient */
@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Center the map div with a shadowed container */
#map-container {
    margin: 20px auto;
    width: 90%;
    height: 700px;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    overflow: hidden; /* Ensures map stays within rounded corners */
    display: flex; /* Center map inside the container if needed */
    align-items: center;
    justify-content: center;
}

/* Ensure the map takes full space of its container */
#map {
    width: 100%;
    height: 100%;
}

/* Footer styling */
footer {
    position: relative;
    bottom: 10px; /* Position at the bottom of the page */
    width: 100%; /* Make it full width */
    text-align: center; /* Center the text */
    font-size: 0.8em; /* Smaller font size */
    color: rgba(255, 255, 255, 0.7); /* Light gray color for the footer */
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background */
    padding: 10px 0; /* Vertical padding */
}

/* Adjust footer font size for smaller screens */
@media screen and (max-width: 600px) {
    footer {
        font-size: 0.7em; /* Further reduce font size on small screens */
    }
}