/* Tylko niezbędne style - Bootstrap robi resztę */
body {
    min-height: 100vh;
}

.font-monospace {
    font-family: 'Courier New', Consolas, monospace;
}

/* Card hover effect */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
