body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #eeeeee;
}

header h1 {
    color: #2c3e50;
    margin: 0;
    font-size: 2.5em;
}

nav {
    background-color: #34495e;
    border-radius: 5px;
    margin: 20px 0;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #4e6a85;
}

nav ul li a.active {
    background-color: #e74c3c;
}

main {
    padding: 10px;
    min-height: 250px;
}

main h2 {
    color: #34495e;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

#kontakt ul {
    list-style: none;
    padding-left: 0;
}

#kontakt ul li {
    margin-bottom: 8px;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    font-size: 0.9em;
    color: #888;
}

.nakup-kroky {
    list-style: none;
    padding-left: 0;
    counter-reset: kroky-counter;
    margin-top: 30px;
}

.nakup-kroky li {
    counter-increment: kroky-counter;
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
    min-height: 40px;
}

.nakup-kroky li::before {
    content: counter(kroky-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nakup-kroky li strong {
    display: block;
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 5px;
}

.nakup-kroky li p {
    margin: 0;
    padding: 0;
}

.dokument-linky {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.dokument-linky li {
    margin-bottom: 10px;
}

.dokument-linky li a {
    display: inline-block;
    background-color: #f4f4f4;
    padding: 12px 18px;
    text-decoration: none;
    color: #34495e;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.dokument-linky li a:hover {
    background-color: #e9e9e9;
    border-color: #ccc;
}

.poznamka {
    margin-top: 25px;
    font-size: 0.9em;
    font-style: italic;
    color: #777;
    background-color: #f9f9f9;
    border-left: 3px solid #e74c3c;
    padding: 10px;
}

.poznamka code {
    background-color: #eee;
    padding: 2px 4px;
    border-radius: 3px;
}