html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Filter container layout */
#filter-container {
    margin: 0px 20px 0 20px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Toggle switch styling */
.filter-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    .filter-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

/* Toggle ON state */
.filter-switch input:checked + .slider {
    background-color: #4caf50;
}

    .filter-switch input:checked + .slider:before {
        transform: translateX(20px);
    }

/* Responsive styling */
@media (max-width: 768px) {
    #filter-container {
        flex-direction: column;
    }
}


