#toscana-google-map {
    width: 100%;
    height: 800px;
}

#filter-container {
    position: relative;
}

.filter-toggle-button {
    position: absolute;
    top: 7px;
    left: 10px;
    background-color: #008CBA;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2000;
    font-family: 'Nunito', sans-serif;
}

.filter-toggle-button:focus {
    outline: none;
}

#filters-wrapper {
    position: absolute;
    top: 45px;
    width: 300px;
    z-index: 1000;
    padding: 20px;
    display: none;
}

#post-type-filters {
    display: block;
    flex-direction: column;
    gap: 10px;
    max-height: 525px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    width: 220px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: 'Nunito', sans-serif;
}

#post-type-filters label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

#post-type-filters input[type="checkbox"] {
    margin-right: 8px;
}

.filter-heading-home {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

/* Fullscreen Button */
.fullscreen-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.fullscreen-button svg {
    width: 24px;
    height: 24px;
    fill: black;
    margin: 8px;
}

.fullscreen-button:focus {
    outline: none;
}

#fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 90001;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#modal-body {
    position: relative;
    width: 100%;
    height: 100%;
}

#modal-google-map {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh;
    position: relative !important;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 2px;
}

.close-button:focus {
    outline: none;
}

.modal-filter-button {
    position: absolute;
    top: 55px;
    left: 10px;
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 2000;
    font-family: 'Nunito', sans-serif;
}

.modal-filter-button:focus {
    outline: none;
}

#modal-filters-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    position: absolute;
    top: 100px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-family: 'Nunito', sans-serif;
}

/* Additional Styles */
#sport-filter-dropdown {
    display: none;
}

#category-filters {
    display: none;
}

