:root {
    --primary: #27ae60;
    --primary-dark: #219653;
    --secondary: #f39c12;
    --light: #f8f9fa;
    --dark: #333333;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

main {
    margin-top: 80px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

/* Carousel */
.hero-carousel {
    height: 80vh;
    min-height: 600px;
}

.hero-carousel .carousel-item {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Full-Height Container */
.container-bg {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fix non-readable table cells */
#tbl td {
    color: black !important;
    font-weight: 500 !important;
}

/* Slick Date Carousel */
.slick-prev:before,
.slick-next:before {
    color: green !important;
}
.slick-item-active {
    color: white;
    background-color: #28a745;
}

/* Back to the top, and other components fixed on the bottom right of the screen */
.bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1050;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 2rem;
}

.pagination li {
    margin: 0 2px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 0.95rem;
    color: #2e7d32;
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Hover efekt */
.pagination a:hover {
    background-color: #66bb6a;
    color: #fff;
}

/* Aktivní stránka */
.pagination .active a {
    background-color: #2e7d32;
    color: #fff;
}

/* Disabled tlačítka */
.pagination .disabled a {
    background-color: #f0f0f0;
    color: #9e9e9e;
    pointer-events: none;
}