#aList {
    list-style: none; 
    display: flex;
    justify-content: space-around;
    max-width: 1300px; 
    gap: 0.5rem;  
}

#companyDetailsItem{
    min-width: fit-content;
}

#companyName{
    padding-bottom: 1rem;
}

#companyDetails {
    list-style: none;
}

.listItem {
    padding-bottom: 0.5rem;
}

#mapItem {
    display: flex;
    width: 100%;
}

#map {
    width: 100%;
}

#mapConfirmDiv {
    position: relative;
    overflow: hidden;
}

#mapConfirmImg{
    display: block;
    width: 100%;
    height: 85%;
    max-height: 310px;
    overflow: hidden;
}

#mapConfirm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#mapConfirmButton {
    color: #FFFFFF;
    background: #0084FF;
    font-size: 1rem;
    width: fit-content;
    border: 1px solid #0084FF;
    border-radius: 4px;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

#mapConfirmButton:hover {
    color: #0084FF;
    background: #FFFFFF;
}

#companyContactsTable {
    width: 100%;
    border-collapse: collapse;
}

#companyContactsTable th {
    border: 2px solid #dadada;
    background-color: #0084FF;
    color: #FFFFFF;
}

#companyContactsTable td {
    border: 2px solid #dadada;
    text-align: center;
    vertical-align: middle;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

@media screen and (max-width: 1080px) {
    #aList {
        display: initial;
    }

    #map {
        width: 87.5vw;
        height: 417px;
        margin: auto;
    }
    
    #mapConfirmImg{
        width: 87.5vw;
        height: 417px;
        margin: auto;
        content: url("/images/blurred_map_big.png");
    }
}
