        body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
        }
        #map {
            width: 100%;
            height: 500px;
            margin-top: 20px;
            border: 1px solid #ccc;
            cursor: pointer;
        }
        #selectedAddress {
            margin-top: 15px;
            padding: 10px;
            background: #f0f8ff;
            border: 1px solid #a9f2f5;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }
        .saveButon{
            width: 150px;
            height: 60px;
            background-color: #abf1f3;
            border-radius: 20px;
            font-size: 17px;
        }
        @media (max-width: 550px) {

            #selectedAddress{
                flex-direction: column;
            }
        }
