body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

header {
    background-color: #306998;
    color: white;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
}

section {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #306998;
    color: white;
}
footer a {
    color: #ffffff; /* bílá barva odkazů pro lepší kontrast */
    text-decoration: none; /* odstranění podtržení */
    transition: color 0.3s ease; /* animace změny barvy */
}

footer a:hover, footer a:focus {
    color: #04c2c9; /* změna barvy odkazů při najetí myši nebo fokusu */
    text-decoration: underline; /* přidání podtržení pro lepší zvýraznění */
}

footer a:visited {
    color: #a9a9a9; /* šedá barva pro navštívené odkazy */
}

h1, h2 {
    color: #204060;
}
code {
    display: block;
    padding: 8px;
    margin: 10px 0;
    font-family: 'Courier New', Courier, monospace; /* Monospaced font for better code readability */
    background-color: #f4f4f4; /* Light grey background */
    border: 1px solid #ddd; /* Subtle border */
    border-left: 3px solid #f36d33; /* Thick left border for emphasis */
    color: #666; /* Dark grey text color */
    overflow: auto; /* Ensures content is all visible */
    white-space: pre-wrap; /* Maintains spacing and new lines */
    word-wrap: break-word; /* Ensures lines do not exceed the container width */
}
