/* Základní styly */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Přizpůsobení Bootstrapu */
.navbar {
    margin-bottom: 1rem;
}

.jumbotron {
    background-color: #f8f9fa;
    border-radius: .3rem;
}

/* Vlastní komponenty */
.dashboard-card {
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem 1rem;
    }
}
