.custom-info-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    width: 300px; /* Larghezza maggiore per desktop */
    max-width: 400px; /* Limita la larghezza */
    background-color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0px;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.info-window-link {
    color: inherit;
    display: block;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

.info-window-image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.info-window-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.info-window-content {
    padding: 20px;
    text-align: left;
    font-family: 'Nunito', sans-serif;
}

.info-window-title {
    font-size: 20px; /* Più grande per desktop */
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    font-family: 'Nunito', sans-serif;
}

.info-window-address {
    font-size: 14px; 
    color: #ff5722;
    margin-bottom: 12px;
}

.info-window-description {
    font-size: 16px;
    color: #444;
    margin-top: 15px;
    font-family: 'Nunito', sans-serif;
}

.close-info-window {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
}

/* Styles for mobile (max-width: 767px) */
@media (max-width: 767px) {
    .custom-info-window {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        z-index: 10000;
        width: 80%;
        max-width: 300px;
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px;
        overflow: hidden;
        font-family: 'Nunito', sans-serif;
    }

    .info-window-link {
        color: inherit;
        display: block;
        text-decoration: none !important;
        font-family: 'Nunito', sans-serif;
    }

    .info-window-image-container {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .info-window-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

    .info-window-content {
        padding: 15px;
        text-align: left;
        font-family: 'Nunito', sans-serif;
    }

    .info-window-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #333;
        font-family: 'Nunito', sans-serif;
    }

    .info-window-address {
        font-size: 12px;
        color: #ff5722;
        margin-bottom: 8px;
    }

    .info-window-description {
        font-size: 14px;
        color: #444;
        margin-top: 10px;
        font-family: 'Nunito', sans-serif;
    }

    .close-info-window {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.7);
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        cursor: pointer;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Nunito', sans-serif;
    }
}
