/* style.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
#map-container {
    position: relative;
    height: 100%;
}
#map {
    height: 100%;
    width: 100%;
}
#tooltip {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: rgba(255, 255, 255, 1);
    padding: 10px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    border: 1px solid black;
}

#tooltip p{
    font-weight: 600;
}


/* Defult Display None */
.loading-step, .select-place-step, .select-radius-step, .hidden{
    display: none;
}

#tooltip.loading .loading-step {
    display: block;
}

#tooltip.select-place .select-place-step {
    display: block;
}

#tooltip.select-radius .select-radius-step {
    display: block;
}

/* Style the select element */
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#action-button-container{
    position: absolute;
    bottom: 50px;
    width: 90%;
    left: 50%;
    transform: translate(-50%, 0%);
}

#action-button-container #search-button{
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid black;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
    border-radius: 5px;
    background-color: orange;
    cursor: pointer;
}

#list-button-container{
    position: absolute;
    bottom: 110px;
    width: 90%;
    left: 50%;
    transform: translate(-50%, 0%);
}


#list-button-container #list-button{
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid black;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    border-radius: 5px;
    background-color: navy;
    cursor: pointer;
}





/* List Items CSS */

#list-container{
    min-height: 100vh;
    background-color: skyblue;
}

#list-header{
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    position: fixed;
    background-color: white;
    width: 100%;
    height: 100px;
}

#list-content{
    padding-top: 110px;
    padding-bottom: 50px;
}

.list-item{
    display: flex;
    margin: 15px;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
}

.position-container{
    padding: 5px;
    display: flex;
}

.position{
    font-size: 20px;
    background-color: navy;
    color: white;
    border-radius: 25px;
    margin-top: auto;
    margin-bottom: auto;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.data-container{
    padding: 10px;
    flex-grow: 1;
}

.data-container .name{
    margin: 0px;
}