/* default.css */

/* Navigace */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    margin-right: 1rem;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Kontejner */
.container {
    max-width: 1200px;
}

/* Seznamy */
.list-group-item {
    max-width: 600px;
    margin: 0 auto;
    transition: background-color 0.3s, transform 0.2s;
    border-radius: 5px;
}

.list-group-item:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.02);
}

/* Obecná tlačítka */
.button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
}

/* Lepší kontrast pro karty */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Oprava podtrženého copyrightu */
.footer p a {
    text-decoration: none;
    color: inherit;
}

.footer p a:hover {
    text-decoration: none;
    color: #007bff;
}