/* Obecné nastavení */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    margin-top: 20px;
}

/* Formuláře */
form {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

form input, form select, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Tabulky */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table th {
    background-color: #f4f4f4;
}

table tr:hover {
    background-color: #f1f1f1;
}

.table-actions a {
    margin-right: 10px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.table-actions a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header, footer {
        text-align: center;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    table, form {
        font-size: 14px;
    }

    table th, table td {
        padding: 5px;
    }
}
