﻿.modal-xl .modal-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-container {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #ddd;
}

@media (max-width: 768px) {
    .modal-xl .modal-body {
        flex-direction: column;
    }
}

#map {
    width: 100%;
    height: 1200px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.uberlogo, .bitaksilogo, .indrivelogo {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: calc(50% - 40px);
    border: 4px solid white;
}

.uberlogo {
    background-image: url('images/uber.png');
}

.bitaksilogo {
    background-image: url('images/bitaksi.png');
}

.indrivelogo {
    background-image: url('images/indrive.png');
}

.info-box {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    color: white;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .info-box h1 {
        font-size: 24px;
        font-weight: bold;
        color: black;
        margin-top: 30px;
    }

    .info-box i {
        font-size: 24px;
        color: black;
        margin-top: 10px;
    }

#loadingAnimation {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mainlogo {
    width: 100px;
    height: auto;
    position: absolute;
    z-index: 1;
}

.mainspinner {
    width: 180px;
    height: 180px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-top: 10px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loadingSpinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-top: 6px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
