﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and borders in height calculations */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure full viewport height */
}

main {
    flex: 1; /* Allow main content to expand */
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: red;
    color: white;
    text-align: center;
}

@media (max-width: 768px){
    .dropdown-container {
        order: 1;
        margin-bottom: 15px;
    }
    .search-text{
        order:2;
    }
    .search-button {
        order: 3;
    }
    .btn {
        width: 100%
    }
    
}
.dropdown-container {
    display: flex;
    align-items: center;
}
.responsive-label {
    margin-right: 8px;
}
.table {
    border: 1px solid #dee2e6;
}
/* General styles for the cookie banner */
#Cookies {
    display: flex;
    flex-direction: column; /* Stack elements vertically for better responsiveness */
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
