/* CSS for the overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 402;
}

.overlay2 {
    z-index: 403;
}

.filter-text {
    color: white;
    padding-bottom: 20px;
}

/* CSS for the filter container */
.filter-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 403;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* CSS for the filter window */
.filter-window {
    background-color: #013F79;
    border-radius: 20px;
    padding: 40px;
    pointer-events: all;
}

.filter-category-text {
    margin: 0px;
    padding-left: 10px;
}

/* CSS for the filter bottom buttons */
.filter-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    /* Optional: Add some space between the list and buttons */
}

.filter-button{
    border-radius: 80px; 
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;    
    text-align: center;
    font-size: 16px;
}

.filter-button-undo {
    /* Button properties */
    border: 1px solid #005FAC;
    background-color: #FFFFFF;
    color: #013F79;
    
    margin-right: 10px;
}

.filter-button-apply {
    /* Button properties */
    border: 1px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
}



.filter-list {
    margin-top: 50px;
    margin-bottom: 70px;
    margin-right: 40px;
}

/* CSS for the list items */
.filter-category {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Optional: Add some space between list items */
}

/* Add custom styles for radio buttons */
input[type="checkbox"] {
    /* Hide the default radio button */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #D9D9D9;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  
  /* Add custom styles for the checked (selected) state of the radio button */
  input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: black;
  }