body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    padding: 0;
    text-align: center;
    line-height: 40px;
}

#scrollToTopBtn span {
    font-size: 28px;
}

#scrollToTopBtn:hover {
    background-color: #45a049;
}

.result-count {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #4CAF50;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 100;
    font-size: 14px;
    color: #fff;
}

#uniqueCount {
    top: 50px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 1px;
    left: 1px;
    z-index: 102;
    padding: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hamburger-menu .line {
    background-color: #333;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.filters-container {
    position: fixed;
    left: -100%;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 101;
    overflow-y: auto;
}

.filters-container.open {
    left: 0;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filters select, .filters input {
    padding: 8px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.filters input#locatie {
    width: 100%;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.table-container {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    overflow-x: auto;
    margin-left: 260px;
    flex-grow: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .filters-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
    }

    .filters-container.open {
        left: 0;
    }

    .table-container {
        margin-left: 0;
    }

    table {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none;
    }

    .filters-container {
        left: 0;
    }

    .table-container {
        margin-left: 260px;
    }

    table {
        padding: 0 20px;
        border-collapse: separate;
    }
}
