.location-section {
    background-image: url('/slike/lokacijakrugovi.png');
    padding: 30px 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
}

.info-box-container {
    position: relative;
    flex: 1 1 400px; 
    max-width: 400px;
    background-color: #EBEBEB; 
    border-radius: 32px; 
    border: 2px solid #FF6F61; 
    padding: 20px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    z-index: 10; 
    height: auto;
    top: 100px;
    left: 75px;
}

.info-box-container p {
    color: black; 
    font-size: 19px; 
    display: flex; 
    align-items: center; 
    margin-bottom: 10px; 
}

.info-box-container i {
    color: black; 
    margin-right: 10px; 
    font-size: 28px; 
    width: 40px;
}

.map-box-container {
    flex: 1 1 400px; 
    max-width: 800px;
    height: 520px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}

.map-box-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 300px) and (max-width: 767px){
    .map-box-container {
        flex: 1 1 300px; 
        max-width: 500px;
        height: 420px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .info-box-container{
        position: relative;
        flex: 1 1 200px; 
        max-width: 200px;
        background-color: #EBEBEB; 
        border-radius: 32px; 
        border: 2px solid #FF6F61; 
        padding: 20px; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
        z-index: 10; 
        height: auto;
        top: 100px;
        left: 75px;
    }
    .info-box-container p {
        color: black; 
        font-size: 12px; 
        display: flex; 
        align-items: center; 
        margin-bottom: 10px; 
    }
    
    .info-box-container i {
        color: black; 
        margin-right: 10px; 
        font-size: 10px; 
        width: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .map-box-container {
        flex: 1 1 300px; 
        max-width: 500px;
        height: 420px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .info-box-container{
        position: relative;
        flex: 1 1 350px; 
        max-width: 350px;
        background-color: #EBEBEB; 
        border-radius: 32px; 
        border: 2px solid #FF6F61; 
        padding: 20px; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
        z-index: 10; 
        height: auto;
        top: 100px;
        left: 75px;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .map-box-container {
        flex: 1 1 300px; /* Same as info box */
        max-width: 500px;
        height: 420px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .info-box-container{
        position: relative;
        flex: 1 1 350px; 
        max-width: 350px;
        background-color: #EBEBEB; 
        border-radius: 32px; 
        border: 2px solid #FF6F61; 
        padding: 20px; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
        z-index: 10; 
        height: auto;
        top: 100px;
        left: 75px;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .map-box-container {
        flex: 1 1 300px; /* Same as info box */
        max-width: 800px;
        height: 520px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .info-box-container{
        position: relative;
        flex: 1 1 400px; 
        max-width: 400px;
        background-color: #EBEBEB; 
        border-radius: 32px; 
        border: 2px solid #FF6F61; 
        padding: 20px; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
        z-index: 10; 
        height: auto;
        top: 100px;
        left: 75px;
    }
}