
    body {
        
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        
        margin: 0;
        padding: 20px;
        color: #000000;
        background-size: cover;
        backdrop-filter:  blur(9px);
        background-color: rgba(191, 191, 191, 0.993);
        height: max-content;

  
    }

    h2 {
        color: #444;
    }

    label {
        font-family: 'Montserrat', sans-serif;
        display: block;
        margin-bottom: 5px;
    }
   
        #map {
            height: 500px;
            width: 50%;
            border-radius: 15px;
            border-style: initial;
            border-color: #000000;
        }
        #distance, #suggestion, #cost {
            margin-top: 10px;
            font-weight: bold;
        }
    
    #deliveryLocation {
        font-family: 'Montserrat', sans-serif;
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border-radius: 4px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    #deliveryLocation:focus {
        border-color: #0056b3;
        outline: none;
    }

    input[type="text"],
    input[type="tel"],
    input[type="number"],
    select {
        font-family: 'Montserrat', sans-serif;
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border-radius: 4px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    input[type="checkbox"] {
        margin-bottom: 10px;
    }

    button {
        font-family: 'Montserrat', sans-serif;
        background-color: #0056b3;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
    }

    button:hover {
        background-color: #004494;
    }

    #additionalOptions {
        margin-bottom: 20px;
    }

    #totalCost {
        margin-top: 20px;
        font-weight: bold;
        color: #0056b3;
    }

    @media (max-width: 600px) {
        body {
            padding: 10px;
        }

        button {
            padding: 8px 15px;
            font-size: 14px;
        }

        input[type="text"],
        input[type="tel"],
        input[type="number"],
        select {
            padding: 6px;
        }

        h2 {
            font-size: 18px;
        }
    }


.journal-button2 {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s;
    width: 200px;
}

.journal-button2:hover {
    background-color: #0056b3;
}
.journal-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s;
    width: 200px;
}

.journal-button:hover {
    background-color: #0056b3;
}

